original
stringlengths
14
334
logical_form
stringlengths
30
1.82k
__index_level_0__
int64
0
1.65k
All people who are respected by others are people who contribute to the country.
all x1.(_people(x1) -> (exists e2.(_respect(e2) & (Acc(e2) = x1) & exists x3.(_other(x3) & (Subj(e2) = x3))) -> exists x4.(_people(x4) & exists e5.(_contribute(e5) & (Subj(e5) = x4) & exists x6.(_country(x6) & (Dat(e5) = x6))) & (x1 = x4))))
1,003
If a city is in a state which is in US, the city is a US city.
(exists x1.(_city(x1) & exists e2.(exists x3.(_state(x3) & exists e4.(exists x5.(_us(x5) & _in(e4,x5)) & (Subj(e4) = x3)) & _in(e2,x3)) & (Subj(e2) = x1))) -> exists x6.(_city(x6) & exists x7.(_city(x7) & _us(x7) & (x6 = x7))))
1,004
All cars made in Maranello are Ferrari
all x1.(_car(x1) -> (exists e2.(_make(e2) & (Acc(e2) = x1) & exists x3.(_maranello(x3) & _in(e2,x3))) -> exists x4.(_ferrari(x4) & (x1 = x4))))
1,005
A horse is a racehorse if it is in a race.
(exists x1.((x1 = _it) & exists e2.(exists x3.(_race(x3) & _in(e2,x3)) & (Subj(e2) = x1))) -> exists x4.(_horse(x4) & exists x5.(_racehorse(x5) & (x4 = x5))))
1,006
All people who study are students.
all x1.(_people(x1) -> (exists e2.(_study(e2) & (Subj(e2) = x1)) -> exists x3.(_student(x3) & (x1 = x3))))
1,007
There is an Indian.
exists x1.(_indian(x1) & exists e2.(Subj(e2) = Subj(e2)))
1,008
One of the tutors of Hippocrates was Herodicus.
exists x1.(_one(x1) & exists x2.(_tutor(x2) & exists x3.(_hippocrates(x3) & (x2 = x3)) & (x1 = x2)) & exists x4.(_herodicus(x4) & (x1 = x4)))
1,009
The boreal taiga zone in North America is a cold place to live in.
exists x1.(_zone(x1) & _taiga(x1) & _boreal(x1) & exists x2.(_america(x2) & _north(x2) & exists e3.(_in(e3,x2) & (Subj(e3) = x1))) & exists x4.(_place(x4) & _cold(x4) & exists e5.(_live(e5) & (Subj(e5) = x4) & _in(e5)) & (x1 = x4)))
1,010
Olivia works during the day.
exists x1.(_olivia(x1) & exists e2.(_work(e2) & (Subj(e2) = x1) & exists x3.(_day(x3) & _during(e2,x3))))
1,011
Mac is neither a folk song nor a sci-fi movie.
exists x1.(_mac(x1) & exists x2.(_song(x2) & _folk(x2) & _neither(x2) & (x1 = x2)) & exists x3.(_movie(x3) & _sci_dash_fi(x3) & _neither(x3) & (x1 = x3)))
1,012
Stonefish stings cause death if not treated.
exists x1.(_stonefish(x1) & exists x2.(_death(x2) & -exists e3.(_treat(e3) & (Acc(e3) = x2)) & exists x4.(_cause(x4) & exists e5.(_sting(e5) & (Subj(e5) = x1) & (Acc(e5) = x4) & (Dat(e5) = x2)))))
1,013
Daniel supported the Popular Front but was not popular.
exists x1.(_daniel(x1) & exists x2.(_front(x2) & _popular(x2) & exists e3.(_support(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))) & -_popular(x1))
1,014
If something requires a medical diagnosis, then lab tests or imaging is required.
(exists x1 x2.(_diagnosis(x2) & _medical(x2) & exists e3.(_require(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))) -> exists x4.((_test(x4) | _imaging(x4)) & _lab(x4) & exists e5.(_require(e5) & (Acc(e5) = x4) & _then(e5))))
1,015
Erica is someone who plays a lot of chess.
exists x1.(_erica(x1) & exists x2.(exists x3.(_lot(x3) & exists x4.(_chess(x4) & (x3 = x4)) & exists e5.(_play(e5) & (Subj(e5) = x2) & (Acc(e5) = x3))) & (x1 = x2)))
1,016
The University of Edinburgh is a university located in the United Kingdom.
exists x1.(_university(x1) & exists x2.(_edinburgh(x2) & (x1 = x2)) & exists x3.(_university(x3) & exists e4.(_locate(e4) & (Acc(e4) = x3) & exists x5.(_kingdom(x5) & _united(x5) & _in(e4,x5))) & (x1 = x3)))
1,017
Zhang got an A in English.
exists x1.(_zhang(x1) & exists x2.(_a(x2) & exists x3.(_english(x3) & exists e4.(_in(e4,x3) & (Subj(e4) = x2))) & exists e5.(_get(e5) & (Subj(e5) = x1) & (Acc(e5) = x2))))
1,018
A musician can be a singer or a writer.
exists x1.(_musician(x1) & _can((exists x2.(_singer(x2) & (x1 = x2)) | exists x3.(_writer(x3) & (x1 = x3)))))
1,019
James Cocks was a British lawyer.
exists x1.(_cocks(x1) & _james(x1) & exists x2.(_lawyer(x2) & _british(x2) & (x1 = x2)))
1,020
All people who attend weddings are getting married or have friends who are getting married.
all x1.(_people(x1) -> (exists x2.(_wedding(x2) & exists e3.(_attend(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))) -> (exists e4.(_marry(e4) & (Acc(e4) = x1) & _get(e4)) | exists x5.(_friend(x5) & exists e6.(_marry(e6) & (Acc(e6) = x5) & _get(e6)) & exists e7.(_have(e7) & (Subj(e7) = x1) & (Acc(e7) = x5))))))
1,021
Odell is an English surname originating in Odell, Bedfordshire.
exists x1.(_odell(x1) & exists x2.(_surname(x2) & _english(x2) & exists e3.(_originate(e3) & (Subj(e3) = x2) & exists x4.(_odell(x4) & _in(e3,x4)) & exists x5.(_bedfordshire(x5) & _in(e3,x5))) & (x1 = x2)))
1,022
If Nancy is not a teacher, then they are not paid by the school.
(-exists x1.(_nancy(x1) & exists x2.(_teacher(x2) & (x1 = x2))) -> -exists x3.((x3 = _they) & exists e4.(_pay(e4) & (Acc(e4) = x3) & exists x5.(_school(x5) & (Subj(e4) = x5) & _then(e4)))))
1,023
If people enjoy going out often to restaurants with friends, then they order takeout from delivery services often.
((exists x1.((x1 = _they) & _then(x1)) & exists x2.(_people(x2) & exists x3.(_takeout(x3) & _order(x3) & exists x4.(_service(x4) & _delivery(x4) & exists e5.(_from(e5,x4) & (Subj(e5) = x3))) & exists e6.(_go(e6) & (Subj(e6) = x2) & (Acc(e6) = x3) & _often(e6) & exists x7.(_restaurant(x7) & exists x8.(_friend(x8) & exists e9.(_with(e9,x8) & (Subj(e9) = x7))) & _to(e6,x7) & _often(e6) & _enjoy(e6)))) & _out(x2))) -> exists e10.True)
1,024
V is depressing.
exists x1.(_v(x1) & exists e2.(_depress(e2) & (Subj(e2) = x1)))
1,025
Grace is either a cat and a dog, or neither a cat nor a dog.
exists x1.(_grace(x1) & exists x2.(_cat(x2) & (x1 = x2)) & (exists x3.(_dog(x3) & (x1 = x3)) | \F4.(True(F4) | (exists x5.(_cat(x5) & _neither(x5) & (x1 = x5) & F4(x5)) & exists x6.(_dog(x6) & (x1 = x6) & F4(x6))))))
1,026
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.
(exists x1.(_team(x1) & _soccer(x1) & _liga(x1) & _la(x1) & _two(x1) & exists x2.(_point(x2) & _same(x2) & exists e3.(_recieve(e3) & (Subj(e3) = x1) & (Acc(e3) = x2)))) -> exists x4.(_team(x4) & exists x5.(_point(x5) & _more(x5) & exists x6.(_game(x6) & exists e7.(_from(e7,x6) & (Subj(e7) = x5) & exists x8.(_team(x8) & _two(x8) & exists e9.(_between(e9,x8) & (Subj(e9) = x5))))) & exists e10.(_recieve(e10) & (Subj(e10) = x4) & (Acc(e10) = x5))) & _higher(x4)))
1,027
Regulation of the exchange rate is required to have a strong national currency.
exists x1.(_regulation(x1) & exists x2.(_rate(x2) & _exchange(x2) & (x1 = x2)) & exists e3.(_require(e3) & (Subj(e3) = x1) & AccI(e3,exists x4.(_currency(x4) & _national(x4) & _strong(x4) & exists e5.(_have(e5) & (Subj(e5) = x1) & (Acc(e5) = x4))))))
1,028
All Instagram is entertainment.
all x1.(_instagram(x1) -> exists x2.(_entertainment(x2) & (x1 = x2)))
1,029
Nothing preceded by data processing acquires data.
-exists x1.(exists e2.(_precede(e2) & (Acc(e2) = x1) & exists x3.(_processing(x3) & _datum(x3) & (Subj(e2) = x3))) & exists x4.(_datum(x4) & exists e5.(_acquire(e5) & (Subj(e5) = x1) & (Acc(e5) = x4))))
1,030
In 2016, a new television series named Westworld debuted on HBO.
exists x1.(_series(x1) & _television(x1) & _new(x1) & exists x2.(_westworld(x2) & exists e3.(_name(e3) & (Dat(e3) = x1) & (Acc(e3) = x2))) & exists e4.(_debut(e4) & (Subj(e4) = x1) & exists x5.(_hbo(x5) & _on(e4,x5) & exists x6.(_2016(x6) & _in(e4,x6)))))
1,031
All dispensable things are environment-friendly.
all x1.((_thing(x1) & _dispensable(x1)) -> _environment_dash_friendly(x1))
1,032
Quincy McDuffie can catch many footballs easily.
exists x1.(_mcduffie(x1) & _quincy(x1) & _can(exists x2.(_football(x2) & _many(x2) & exists e3.(_catch(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & _easily(e3)))))
1,033
All devices with the company logo belong to the company.
all x1.(_device(x1) -> (exists x2.(_logo(x2) & _company(x2) & exists e3.(_with(e3,x2) & (Subj(e3) = x1))) -> exists e4.(_belong(e4) & (Subj(e4) = x1) & exists x5.(_company(x5) & (Dat(e4) = x5)))))
1,034
Donald Knuth made major contributions to the analysis of algorithms.
exists x1.(_knuth(x1) & _donald(x1) & exists x2.(_contribution(x2) & _major(x2) & exists e3.(_make(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & exists x4.(_analysis(x4) & exists x5.(_algorithm(x5) & (x4 = x5)) & (Dat(e3) = x4)))))
1,035
Grebes are not platypuses and also not echidnas.
-exists x1.(_grebe(x1) & exists x2.(_platypus(x2) & (x1 = x2)) & -exists x3.(_echidna(x3) & _also(x3) & (x1 = x3)))
1,036
If people study hard, then they grew up with parents who worked as doctors.
(exists x1.(_people(x1) & exists e2.(_study(e2) & (Subj(e2) = x1) & _hard(e2))) -> exists x3.((x3 = _they) & exists e4.(_grow(e4) & (Subj(e4) = x3) & _up(e4) & exists x5.(_parent(x5) & exists e6.(_work(e6) & (Subj(e6) = x5) & exists x7.(_doctor(x7) & _as(e6,x7))) & _with(e4,x5) & _then(e4)))))
1,037
If someone flies, then they are cool.
(exists x1 e2.(_fly(e2) & (Subj(e2) = x1)) -> exists x3.((x3 = _they) & _cool(x3)))
1,038
LA is a city in California(CA).
exists x1.(_la(x1) & exists x2.(_city(x2) & exists x3.(_california(x3) & exists x4.(_ca(x4) & exists e5.(_LEFTB(e5,x4) & (Subj(e5) = x3))) & exists e6.(_in(e6,x3) & (Subj(e6) = x2))) & (x1 = x2)))
1,039
All lawyers are white-collar workers.
all x1.(_lawyer(x1) -> exists x2.(_worker(x2) & _white_dash_collar(x2) & (x1 = x2)))
1,040
If someone yells, then they are not cool.
(-exists x1.((x1 = _they) & _cool(x1)) -> exists e2.True)
1,041
People are either scared of animals or love animals.
exists x1.(_people(x1) & exists e2.(_scare(e2) & (Acc(e2) = x1) & (exists x3.(_animal(x3) & _of(e2,x3)) | exists x4.(_animal(x4) & _love(x4) & _of(e2,x4)))))
1,042
The Controlled Substances Act was an act passed in 1971.
exists x1.(_act(x1) & _substances(x1) & _controlled(x1) & exists x2.(_act(x2) & exists e3.(_pass(e3) & (Acc(e3) = x2) & exists x4.(_1971(x4) & _in(e3,x4))) & (x1 = x2)))
1,043
Paris is the capital of France.
exists x1.(_paris(x1) & exists x2.(_capital(x2) & exists x3.(_france(x3) & (x2 = x3)) & (x1 = x2)))
1,044
Jose has a Chilean wife, Carmen.
exists x1.(_jose(x1) & exists x2.(_wife(x2) & _chilean(x2) & exists e3.(_have(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))) & exists x4.(_carmen(x4) & exists e5.(_have(e5) & (Subj(e5) = x1) & (Acc(e5) = x4))))
1,045
There is a WeTab product.
exists x1.(_product(x1) & _wetab(x1) & exists e2.(Subj(e2) = Subj(e2)))
1,046
If a watch is not airtight and clothes, then a watch is either both airtight and clothes, or neither airtight nor clothes.
(-exists x1.(_watch(x1) & _airtight(x1)) -> exists x2.(_watch(x2) & ((exists x3.(_airtight(x3) & (x2 = x3)) & exists x4.(_clothes(x4) & (x2 = x4))) | (-exists x5.(_airtight(x5) & (x2 = x5)) & exists x6.(_clothes(x6) & (x2 = x6))))))
1,047
And some streets are roads.
exists x1.(_street(x1) & exists x2.(_road(x2) & (x1 = x2)))
1,048
James was either once sentenced for thief or stayed in prison for some time.
exists x1.(_james(x1) & _once(x1) & (exists e2.(_sentence(e2) & (Acc(e2) = x1) & exists x3.(_thief(x3) & _for(e2,x3)) & exists x4.(_time(x4) & _for(e2,x4))) | exists e5.(_stay(e5) & (Acc(e5) = x1) & exists x6.(_prison(x6) & _in(e5,x6) & exists x7.(_time(x7) & _for(e5,x7))))))
1,049
No players who are solid at shooting 2-pointers are bad at mid-range shots.
-exists x1.(_player(x1) & _solid(x1) & _bad(x1))
1,050
Every teacher has students.
all x1.(_teacher(x1) -> exists x2.(_student(x2) & exists e3.(_have(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))))
1,051
All video games in the FIFA series support the PS4 platform.
all x1.((_game(x1) & _video(x1)) -> (exists x2.(_support(x2) & _series(x2) & _fifa(x2) & _platform(x2) & _ps4(x2) & exists e3.(_in(e3,x2) & (Subj(e3) = x1))) -> True))
1,052
All videos aired on Video Gag are in French.
all x1.(_video(x1) -> (exists e2.(_air(e2) & (Acc(e2) = x1) & exists x3.(_gag(x3) & _video(x3) & _on(e2,x3))) -> exists e4.(exists x5._french(x5) & (Subj(e4) = x1))))
1,053
No one unproductive is an energetic person.
-exists x1.(_unproductive(x1) & exists x2.(_person(x2) & _energetic(x2) & (x1 = x2)))
1,054
All buildings operated by Yale Housing staff are managed by Yale Housing.
all x1.(_building(x1) -> (exists e2.(_operate(e2) & (Acc(e2) = x1) & exists x3.(_staff(x3) & _housing(x3) & _yale(x3) & (Subj(e2) = x3))) -> exists e4.(_manage(e4) & (Acc(e4) = x1) & exists x5.(_housing(x5) & _yale(x5) & (Subj(e4) = x5)))))
1,055
Bernarda Bryson Shahn was married to Ben Shahn.
exists x1.(_shahn(x1) & _bryson(x1) & _bernarda(x1) & exists e2.(_marry(e2) & (Acc(e2) = x1) & exists x3.(_shahn(x3) & _ben(x3) & (Dat(e2) = x3))))
1,056
If people own at least one coffeemaker and one blender in their home, then they do not order takeout at least once a day.
(exists x1.(_people(x1) & exists x2.(_blender(x2) & _coffeemaker(x2) & exists e3.(_own(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & exists x4.(_home(x4) & _in(e3,x4))))) -> -exists x5.((x5 = _they) & _day(\F6 F7 F8.F7(\x9.True,\x10.F6(\F11 F12.(F12(x10) & _at(x10)),\e13.(_once(e13) & F8(e13)))),\F14 F15.F14(\x16.True,\x17.exists x18.(_takeout(x18) & exists e19.(_order(e19) & (Subj(e19) = x17) & (Acc(e19) = x18) & F15(e19)))),\F20 F21.F21(x5),\e22._then(e22))))
1,057
Pets who are naughty are not liked as much.
-exists x1.(_pet(x1) & exists x2.(_naughty(x2) & (x1 = x2)) & exists e3.(_like(e3) & (Acc(e3) = x1) & exists x4.(_much(x4) & _as(e3,x4))))
1,058
Every chef can cook.
all x1.(_chef(x1) -> _can(exists e2.(_cook(e2) & (Subj(e2) = x1))))
1,059
Volunteers work in groups or individually.
(exists x1.(_volunteer(x1) & exists e2.(_work(e2) & (Subj(e2) = x1) & exists x3.(True & _in(e2,x3)))) & exists x4.(_volunteer(x4) & exists e5.(_work(e5) & (Subj(e5) = x4) & _individually(e5))))
1,060
Guam sent an athlete to the Calgary Winter Olympics.
exists x1.(_guam(x1) & exists x2.(_athlete(x2) & exists e3.(_send(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & exists x4.(_olympics(x4) & _winter(x4) & _calgary(x4) & (Dat(e3) = x4)))))
1,061
The indie pop band Phoenix has released 6 albums.
exists x1.(_phoenix(x1) & _band(x1) & _pop(x1) & _indie(x1) & exists x2.(_album(x2) & _6(x2) & exists e3.(_release(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))))
1,062
Beasts of Prey is either a fantasy novel or a science fiction novel.
exists x1.(_beast(x1) & exists x2.(_prey(x2) & (x1 = x2)) & (exists x3.(_novel(x3) & _fantasy(x3) & (x1 = x3)) | exists x4.(_novel(x4) & _fiction(x4) & _science(x4) & (x1 = x4))))
1,063
No nuclear-powered submarines are commercial vessels.
-exists x1.(_submarine(x1) & _nuclear_dash_powered(x1) & exists x2.(_vessel(x2) & _commercial(x2) & (x1 = x2)))
1,064
People eat meat regularly or are vegetation.
exists x1.(_people(x1) & (exists x2.(_meat(x2) & exists e3.(_eat(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & _regularly(e3))) | exists x4.(_vegetation(x4) & (x1 = x4))))
1,065
Katya cannot communicate with Danil.
-exists x1.(_katya(x1) & _can(exists e2.(_communicate(e2) & (Subj(e2) = x1) & exists x3.(_danil(x3) & _with(e2,x3)))))
1,066
Jamaica Blue is sold in Walmart or favored by local residents.
exists x1.(_blue(x1) & _jamaica(x1) & (exists e2.(_sell(e2) & (Acc(e2) = x1) & exists x3.(_walmart(x3) & _in(e2,x3) & exists x4.(_resident(x4) & _local(x4) & (Subj(e2) = x4)))) | exists e5.(_favor(e5) & (Acc(e5) = x1) & exists x6.(_resident(x6) & _local(x6) & (Subj(e5) = x6)))))
1,067
Mushrooms are fungi.
exists x1.(_mushroom(x1) & exists x2.(_fungus(x2) & (x1 = x2)))
1,068
There are eight federal districts of Russia: Central, Northwestern, Southern, North Caucasian, Volga, Ural, Siberian and Far Eastern.
exists x1.(_district(x1) & _federal(x1) & _eight(x1) & exists x2.(_russia(x2) & (x1 = x2)) & exists x3.(_eastern(x3) & _far(x3) & _siberian(x3) & _ural(x3) & _volga(x3) & _caucasian(x3) & _north(x3) & _southern(x3) & _northwestern(x3) & _central(x3) & exists e4.(_:(e4,x3) & (Subj(e4) = x1))) & exists e5.(Subj(e5) = Subj(e5)))
1,069
People either enjoy eating gelato ice cream or love to travel and vacation often.
exists x1.(_people(x1) & exists x2.(((_cream(x2) & _ice(x2) & _gelato(x2)) | _love(x2)) & _eating(x2) & exists x3.(_vacation(x3) & _travel(x3) & exists e4.(_to(e4,x3) & (Subj(e4) = x2))) & exists e5.(_enjoy(e5) & (Subj(e5) = x1) & (Acc(e5) = x2) & _often(e5))))
1,070
The PlayStation Eye is a camera accessory for the Playstation 3.
exists x1.(_eye(x1) & _playstation(x1) & exists x2.(_accessory(x2) & _camera(x2) & exists x3.(_playstation(x3) & _3(x3) & (x2 = x3)) & (x1 = x2)))
1,071
Minnesota Vikings was in the National Football League in 1997.
exists x1.(_vikings(x1) & _minnesota(x1) & exists e2.(exists x3.(_league(x3) & _football(x3) & _national(x3) & _in(e2,x3)) & (Subj(e2) = x1) & exists x4.(_1997(x4) & _in(e2,x4))))
1,072
Airbus made more in revenue than Boeing last year.
exists x1.(_airbus(x1) & exists x2.(_more(x2) & exists x3.(_revenue(x3) & exists e4.(_in(e4,x3) & (Subj(e4) = x2) & exists x5.(_boeing(x5) & exists e6.(_than(e6,x5) & (Subj(e6) = x2))))) & exists e7.(_make(e7) & (Subj(e7) = x1) & (Acc(e7) = x2) & _year(e7))) & _last(x1))
1,073
If Nancy is a teacher, then they are on the payroll.
(exists x1.(_nancy(x1) & exists x2.(_teacher(x2) & (x1 = x2))) -> exists x3.((x3 = _they) & exists e4.(exists x5.(_payroll(x5) & _on(e4,x5)) & (Subj(e4) = x3) & _then(e4))))
1,074
Every person that knows magic can fly.
all x1.(_person(x1) -> (exists x2.(_magic(x2) & exists e3.(_know(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))) -> _can(exists e4.(_fly(e4) & (Subj(e4) = x1)))))
1,075
The 2008 Summer Olympics were the second Summer Olympic Games to be held in a communist state.
exists x1.(_olympics(x1) & _summer(x1) & _2008(x1) & exists x2.(_games(x2) & _olympic(x2) & _summer(x2) & _second(x2) & exists e3.(_hold(e3) & (Acc(e3) = x2) & exists x4.(_state(x4) & _communist(x4) & _in(e3,x4))) & (x1 = x2)))
1,076
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.
((exists x1.(_erica(x1) & _bad(x1)) & exists x2.(_erica(x2) & _bad(x2))) -> exists x3.(_erica(x3) & (exists x4.(exists x5.(_creative(x5) & exists e6.(_plan(e6) & (Subj(e6) = x4) & (Acc(e6) = x5)) & (x4 = x5)) & _either(x3,x4)) | exists x7.(exists x8.(_plan(x8) & _neither(x8) & _nor(x8) & _creative(x8,x7)) & _either(x3,x7)))))
1,077
Intro Microeconomics is the only prerequisite for Intermediate Microeconomics.
exists x1.(_microeconomics(x1) & _intro(x1) & exists x2.(_prerequisite(x2) & _only(x2) & exists x3.(_microeconomics(x3) & _intermediate(x3) & (x2 = x3)) & (x1 = x2)))
1,078
The Croton River is in southwestern New York.
exists x1.(_river(x1) & _croton(x1) & exists e2.(exists x3.(_york(x3) & _new(x3) & _southwestern(x3) & _in(e2,x3)) & (Subj(e2) = x1)))
1,079
People will either take a bus or drive to their destination.
exists x1.(_people(x1) & exists x2.((_bus(x2) | _drive(x2)) & exists e3.(_take(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & exists x4.(_destination(x4) & _to(e3,x4)))))
1,080
People are either extroverts or introverts.
exists x1.(_people(x1) & (exists x2.(_extrovert(x2) & (x1 = x2)) | exists x3.(_introvert(x3) & (x1 = x3))))
1,081
A-2017 supports the type-c port.
exists x1.(_a_dash_2017(x1) & exists x2.(_port(x2) & _type_dash_c(x2) & exists e3.(_support(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))))
1,082
Rafa Nadal was born in Mallorca.
exists x1.(_nadal(x1) & _rafa(x1) & exists e2.(_bear(e2) & (Acc(e2) = x1) & exists x3.(_mallorca(x3) & _in(e2,x3))))
1,083
Bakers who can also make scrambled eggs can make a good breakfast.
exists x1.(_baker(x1) & _can(exists x2.(_egg(x2) & _scramble(x2) & exists e3.(_make(e3) & (Subj(e3) = x1) & (Acc(e3) = x2)))) & _can(exists x4.(_breakfast(x4) & _good(x4) & exists e5.(_make(e5) & (Subj(e5) = x1) & (Acc(e5) = x4)))))
1,084
All oreos are cookies.
all x1.(_oreo(x1) -> exists x2.(_cookie(x2) & (x1 = x2)))
1,085
Bernarda Bryson Shahn was a painter and lithographer.
exists x1.(_shahn(x1) & _bryson(x1) & _bernarda(x1) & exists x2.(_lithographer(x2) & _painter(x2) & (x1 = x2)))
1,086
The United States placed second in the gold medal tally but won the highest number of medals overall (112) in the 2008 Summer Olympics.
exists x1.(_states(x1) & _united(x1) & exists x2.(_second(x2) & exists e3.(_place(e3) & (Subj(e3) = x1) & (Acc(e3) = x2) & exists x4.(_medal(x4) & _gold(x4) & _in(e3,x4) & _tally(e3)))) & exists x5.(_number(x5) & _highest(x5) & exists x6.(_medal(x6) & _overall(x6) & (x5 = x6)) & exists x7.(_112(x7) & exists e8.(_LEFTB(e8,x7) & (Subj(e8) = x5) & exists x9.(_olympics(x9) & _summer(x9) & _2008(x9) & exists e10.(_in(e10,x9) & (Subj(e10) = x5))))) & exists e11.(_win(e11) & (Subj(e11) = x1) & (Acc(e11) = x5))))
1,087
The US is in North America.
exists x1.(_us(x1) & exists e2.(exists x3.(_america(x3) & _north(x3) & _in(e2,x3)) & (Subj(e2) = x1)))
1,088
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.
(exists x1.(_RIGHTB(\F2 x3.(_pattern(x3) & F2(x3)),\x4._analysis(x4),x1) & _multivoxel(x1) & exists x5.(_analysis(x5) & (x1 = x5)) & exists x6.(_reading(x6) & _brain(x6) & (x1 = x6))) -> exists x7.(_RIGHTB(\F8 x9.(_pattern(x9) & F8(x9)),\x10._analysis(x10),x7) & _multivoxel(x7) & exists x11.(_analysis(x11) & (x7 = x11)) & exists x12.(_decoding(x12) & _brain(x12) & (x7 = x12))))
1,089
Robert Zimmer was born in Germany.
exists x1.(_zimmer(x1) & _robert(x1) & exists e2.(_bear(e2) & (Acc(e2) = x1) & exists x3.(_germany(x3) & _in(e2,x3))))
1,090
If Jill works at a school or is a teacher, then Jill works at a school.
(exists x1.(_jill(x1) & (exists e2.(_work(e2) & (Subj(e2) = x1) & exists x3.(_school(x3) & _at(e2,x3))) | exists x4.(_teacher(x4) & (x1 = x4)))) -> exists x5.(_jill(x5) & exists e6.(_work(e6) & (Subj(e6) = x5) & exists x7.(_school(x7) & _at(e6,x7) & _then(e6)))))
1,091
All pupils are human.
all x1.(_pupil(x1) -> _human(x1))
1,092
All birds have wings.
all x1.(_bird(x1) -> exists x2.(_wing(x2) & exists e3.(_have(e3) & (Subj(e3) = x1) & (Acc(e3) = x2))))
1,093
If a technique provides a spatial resolution of brains, then it is a measurement of brain activity.
(exists x1.(_technique(x1) & exists x2.(_resolution(x2) & _spatial(x2) & exists x3.(_brain(x3) & (x2 = x3)) & exists e4.(_provide(e4) & (Subj(e4) = x1) & (Acc(e4) = x2)))) -> exists x5.((x5 = _it) & exists x6.(_measurement(x6) & exists x7.(_activity(x7) & _brain(x7) & (x6 = x7)) & (x5 = x6))))
1,094
Drenthe is a Dutch province.
exists x1.(_drenthe(x1) & exists x2.(_province(x2) & _dutch(x2) & (x1 = x2)))
1,095
All Grand Slam champions are World Tour players.
all x1.((_champion(x1) & _slam(x1) & _grand(x1)) -> exists x2.(_player(x2) & _tour(x2) & _world(x2) & (x1 = x2)))
1,096
The only preferred treatment for river blindness is ivermectin.
exists x1.(_treatment(x1) & _preferred(x1) & _only(x1) & exists x2.(_blindness(x2) & _river(x2) & (x1 = x2)) & exists x3.(_ivermectin(x3) & (x1 = x3)))
1,097
Roy Richardson was a cricketer for Sint Maartener, a consituent country.
exists x1.(_richardson(x1) & _roy(x1) & exists x2.(_cricketer(x2) & exists x3.(_maartener(x3) & _sint(x3) & (x2 = x3)) & exists x4.(_country(x4) & _consituent(x4) & (x2 = x4)) & (x1 = x2)))
1,098
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.
((exists x1.(_“as(x1) & exists x2.((x2 = _it) & exists e3.(_was”(e3) & (Subj(e3) = x2) & (Acc(e3) = x1) & exists x4.(_styles(x4) & _harry(x4) & (Subj(e3) = x4)))) & exists x5.(_music(x5) & _classical(x5) & (x1 = x5)) & exists x6.(_max(x6) & exists e7.(_listen(e7) & (Subj(e7) = x6) & _or(\F8 e9.F8(\x10.True,\x11.(Dat(e9) = x11)),\x12.True,\x13._from(\F14 F15.exists x16.(_century(x16) & _12th(x16) & F14(x16) & F15(x16)),x13),e7)) & exists x17.((x17 = _it) & exists e18.(_“as(e18) & (Subj(e18) = x6) & (Acc(e18) = x17) & _then(e18))))) -> exists x19.(_was”(x19) & exists x20.(_styles(x20) & _harry(x20) & exists e21.(_by(e21,x20) & (Subj(e21) = x19))) & exists x22.(_music(x22) & _classical(x22) & exists x23.(_max(x23) & exists e24.(_listen(e24) & (Subj(e24) = x23) & (Dat(e24) = x22))) & (x19 = x22)))) | exists x25.(_song(x25) & exists e26.(exists x27.(_century(x27) & _12th(x27) & _from(e26,x27)) & (Subj(e26) = x25))))
1,099
Do not close your bank account if you request documents from the bank.
-exists x1.(exists x2.((x2 = _you) & exists x3.(_document(x3) & exists e4.(_request(e4) & (Subj(e4) = x2) & (Acc(e4) = x3) & exists x5.(_bank(x5) & _from(e4,x5))))) -> exists x6.(_account(x6) & _bank(x6) & exists e7.(_close(e7) & (Subj(e7) = x1) & (Acc(e7) = x6))))
1,100
If someone goes to the Berlin Zoo, they will see some of the animals that live in Germany.
(exists x1 e2.(_go(e2) & (Subj(e2) = x1) & exists x3.(_zoo(x3) & _berlin(x3) & (Dat(e2) = x3))) -> exists x4.((x4 = _they) & exists x5.(_some(x5) & exists x6.(_animal(x6) & exists e7.(_live(e7) & (Subj(e7) = x6) & exists x8.(_germany(x8) & _in(e7,x8))) & (x5 = x6)) & exists e9.(_see(e9) & (Subj(e9) = x4) & (Acc(e9) = x5)))))
1,101
If a person is the leader of a country for life, that person is in a monarchy.
(exists x1.(_person(x1) & exists x2.(_leader(x2) & exists x3.(_country(x3) & (x2 = x3)) & exists x4.(_life(x4) & (x2 = x4)) & (x1 = x2))) -> exists x5.(_person(x5) & exists e6.(exists x7.(_monarchy(x7) & _in(e6,x7)) & (Subj(e6) = x5))))
1,102