data
stringlengths 12
378
| fol
stringlengths 8
885
|
---|---|
Oxford Circus is designed by a British architect.
|
∃x (British(x) ∧ Architect(x) ∧ Design(x, oxfordCircus))
|
John Nash designed the Central line in 1900.
|
∀x (PartOf(x, centralLine) → Design(johnNash, x))
|
Regent Street is not in London.
|
¬In(regentStreet, london)
|
All pets in my house are either cats or dogs.
|
∀x (Pet(x) ∧ In(x, myHouse) → Cat(x) ⊕ Dog(x))
|
All the dogs in my house bark.
|
∀x (Dog(x) ∧ In(x, myHouse) → Bark(x))
|
Ghosts do not exist.
|
∀x (¬Ghost(x))
|
If some pet in my house barks, then it is not dead.
|
∀x (Bark(x) ∧ Pet(x) ∧ In(x, myHouse) → ¬Dead(x))
|
All of the pets in my house are either dead or alive.
|
∀x (Pet(x) ∧ In(x, myHouse) → Dead(x) ⊕ Alive(x))
|
Jojo is a pet in my house, and it is not alive.
|
Pet(jojo) ∧ InMyHouse(jojo)∧ ¬Alive(jojo)
|
Jojo is a ghost.
|
Ghost(jojo)
|
Jojo is a cat or a ghost.
|
Cat(jojo) ∨ Ghost(jojo)
|
If Jojo is a cat or a ghost, then Jojo either barks or is a dog.
|
Cat(jojo) ∨ Ghost(jojo) → Bark(jojo) ⊕ Dog(jojo)
|
All tigers are cats.
|
∀x (Tiger(x) → Cat(x))
|
No cats are dogs.
|
∀x (Cat(x) → ¬Dog(x))
|
All Bengal tigers are tigers.
|
∀x (BengalTiger(x) → Tiger(x))
|
All huskies are dogs.
|
∀x (Husky(x) → Dog(x))
|
Fido is either a Bengal tiger or a cat.
|
BengalTiger(fido) ⊕ Cat(fido)
|
Fido is a husky animal.
|
Husky(fido)
|
Fido is not a husky.
|
¬Husky(fido)
|
Fido is a Bengal tiger.
|
BengalTiger(fido)
|
Fido is neither a dog nor a husky.
|
¬Dog(fido) ∧ ¬Husky(fido)
|
If a city holds a Summer Olympics, and the city is a US city, then the Summer Olympics will be in the US.
|
∀x ∀y ((SummerOlympicsIn(x,y) ∧ In(x, unitedStates)) → SummerOlympicsIn(x, unitedStates))
|
If a city is in a state in the US, the city is a US city.
|
∀x ∀y ((In(x, y) ∧ In(y, unitedStates)) → In(x, unitedStates))
|
If a city is in a state, and a Summer Olympics is in this city, then the Summer Olympics is in this state.
|
∀x ∀y ∀z ((In(x, z) ∧ State(z) ∧ SummerOlympicsIn(x,y)) → SummerOlympicsIn(z, y))
|
The 2028 Summer Olympics is scheduled to take place in Los Angeles.
|
SummerOlympicsIn(losAngeles, yr2028)
|
Los Angeles is a city in California.
|
In(losAngeles, california)
|
Atlanta is a US city.
|
In(atlanta, unitedStates)
|
Atlanta is in Georgia.
|
In(california, unitedStates)
|
California is a state in the United States.
|
In(atlanta, georgia)
|
Boxing, modern pentathlon, and weightlifting will be removed from The 2028 Summer Olympics.
|
¬InSummerOlympicsIn(boxing, yr2028) ∧ (¬InSummerOlympicsIn(modern_pentathlon, yr2028)) ∧ (¬InSummerOlympicsIn(weightlifting, yr2028))
|
Atlanta in the United States held the 1996 Summer Olympics.
|
SummerOlympicsIn(atlanta, yr1996)
|
The 2028 Summer Olympics will take place in the US.
|
SummerOlympicsIn(unitedStates, yr2028)
|
The 1996 Summer Olympics is not in Georgia.
|
¬SummerOlympicsIn(georgia, yr1996)
|
Skateboarding will appear at The 2028 Summer Olympics.
|
InSummerOlympicsIn(skateboarding, yr2028)
|
The taiga vole is a large vole found in northwestern North America.
|
Vole(taigaVole) ∧ LiveIn(taigaVole, northAmerica)
|
Cats like playing with all voles.
|
LikePlayingWith(cat, taigaVole)
|
The taiga vole lives in the boreal taiga zone.
|
LiveIn(taigaVole, borealTaigaZone)
|
The boreal taiga zone in North America is a cold place to live in.
|
∀x ((LiveIn(x, northAmerica) ∧ LiveIn(x, borealTaigaZone)) → LiveIn(x, coldPlace))
|
Cats like playing with taiga vole.
|
LikePlayingWith(cat, taigaVole)
|
Taiga vole's living place is not cold.
|
¬LiveIn(taigaVole, coldPlace)
|
A diseases affect females or males.
|
∀x (Disease(x) → (Affects(x, female) ∨ Affects(x, male)) )
|
No women have prostate cancer.
|
∀x (Affect(x, female) → ¬ProstateCancer(x))
|
A cancer is either prostate cancer or non-prostate cancer.
|
∀x (ProstateCancer(x) ∨ NonProstateCancer(x))
|
No type of cancer is without mutations.
|
∀x (Cancer(x) → ¬Without(x, mutation))
|
All non-prostate cancers are a type of cancer.
|
∀x (NonProstateCancer(x) → Cancer(x))
|
If adenocarcinoma is a type of cancer or without mutations or both, then adenocarcinoma is in women or without mutations or both.
|
(Cancer(adenocarcinoma) ∨ Without(adenocarcinoma, mutation)) → (Affect(adenocarcinoma, female) ∨ Without(adenocarcinoma, mutation))
|
Adenocarcinoma is a prostate cancer.
|
ProstateCancer(adenocarcinoma)
|
Adenocarcinoma is a disease in women.
|
Affect(adenocarcinoma, men)
|
If adenocarcinoma is a disease in women or without mutations, then adenocarcinoma is without mutations and a non-prostate cancer.
|
(Affect(adenocarcinoma, men) ∨ Without(adenocarcinoma, mutation)) → (NonProstateCancer(adenocarcinoma) ∧ Without(adenocarcinoma, mutation))
|
Some monitors equipped in the lab are produced by the company named AOC.
|
∃x ∃y (LabMonitor(x) ∧ AOC(x) ∧ (¬(x=y)) ∧ LabMonitor(y) ∧ AOC(y))
|
All monitors equipped in the lab are cheaper than their original prices.
|
∀x (LabMonitor(x) → Discounted(x))
|
If a monitor is cheaper than its original price, then its resolution is 1080p.
|
∀x (Discounted(x) → A1080p(x))
|
If a monitor has a resolution of 1080p, then it does not support the type-c port.
|
∀x (A1080p(x) → ¬TypeC(x))
|
LG34 is equipped in the lab.
|
LabMonitor(lg-34)
|
LG34 machine is produced by AOC.
|
AOC(lg-34)
|
LG34 machine does not support the type-c port.
|
¬TypeC(lg-34)
|
LG34 is not with a resolution of 1080p.
|
¬A1080p(lg-34)
|
All fruits sold at Nica's market are shipped from Colombia.
|
∀x ((Fruit(x) ∧ SoldAt(x, nicasMarket)) → ShippedFrom(x, colombia))
|
Some fruits sold in New Haven are shipped from Mexico.
|
∃x ∃y (Fruit(x) ∧ SoldIn(x, newHaven) ∧ ShippedFrom(x, mexico) ∧ (¬(x=y)) ∧ Fruit(y) ∧ SoldIn(y, newHaven) ∧ ShippedFrom(y, mexico))
|
No fruits shipped from Colombia are sold at the local farmers market in New Haven.
|
∀x ((Fruit(x) ∧ ShippedFrom(x, colombia)) → ¬(SoldAt(x, localFarmersMarket)))
|
Avocados are a kind of fruit sold at the local farmers market in New Haven or at Nica's market.
|
Fruit(avocado) ∧ (SoldAt(avocado, localFarmersMarket) ∨ SoldAt(avocado, nica'sMarket))
|
Avocados are either shipped from Colombia and sold in New Haven, or neither.
|
¬(ShippedFrom(avocado, colombia) ⊕ SoldIn(avocado, newHaven))
|
Avocados are a kind of fruit sold at the local farmers market in New Haven.
|
Fruit(avocado) ∧ SoldAt(avocado, localFarmersMarket)
|
Avocados are either sold at the local farmers market in New Haven or are sold in New Haven.
|
SoldAt(avocado, localFarmersMarket) ⊕ SoldIn(avocado, newHaven)
|
Avocados are either sold in New Haven or sold at Nica's market.
|
SoldIn(avocado, newHaven) ⊕ SoldAt(x, nica'sMarket)
|
If avocados are not both sold at the local farmers market in New Haven and shipped from Columbia, then they are neither sold at the local farmers market in New Haven nor in New Haven generally.
|
¬(SoldAt(avocado, localFarmersMarket) ∧ ShippedFrom(avocado, colombia)) → ¬SoldAt(avocado, localFarmersMarket) ∧ ¬SoldIn(avocado, newHaven)
|
Some monitors equipped in the library are produced by AOC.
|
∃x ∃y(Monitor(x) ∧ ProducedBy(x, aOC) ∧ In(x, library) ∧ (¬(x=y)) ∧ Monitor(y) ∧ ProducedBy(y, aOC) ∧ In(y, library))
|
All monitors equipped in the library are cheaper than 800 dollars.
|
∀x ((Monitor(x) ∧ In(x, library)) → CheaperThan(x, dollars800))
|
All monitors cheaper than 800 dollars are with a resolution lower than 1080p.
|
∀x ((Monitor(x) ∧ CheaperThan(x, dollars800)) → ResolutionLessThan(x, p1080))
|
If a monitor has a resolution lower than 1080p, then it does not support the type-c port.
|
∀x ((Monitor(x) ∧ ResolutionLessThan(x, p1080)) → ¬Supports(x, type-CPort))
|
A-2017 supports the type-c port.
|
Supports(a-2017, type-CPort)
|
A-2017 is produced by AOC.
|
ProducedBy(x, aOC)
|
A-2017 is produced by AOC and equipped in the library.
|
ProducedBy(a-2017, aOC) ∧ In(a-2017, library)
|
If either A-2017 is both with a resolution of 1080p and produced by AOC or it is neither, then it is not equipped in the library.
|
¬(ResolutionLessThan(a-2017, p1080) ⊕ ProducedBy(x, aOC)) → ¬(In(a-2017, library))
|
Sūduva Marijampolė holds the Lithuanian Super Cup.
|
Holds(suduva, theLithuanianSuperCup)
|
Sūduva Marijampolė is a soccer team.
|
SoccerTeam(suduva)
|
Some soccer team holds the Lithuanian Super Cup.
|
∃x (SoccerTeam(x) ∧ Holds(x, theLithuanianSuperCup))
|
Ainderby Quernhow is a village and civil parish in the Hambleton District.
|
Village(ainderbyQuernhow) ∧ CivilParish(ainderbyQuernhow) ∧ In(ainderbyQuernhow, hambletonDistrict)
|
Hambleton District is in North Yorkshire.
|
In(hambletonDistrict, northYorkshire)
|
North Yorkshire is in England.
|
In(northYorkshire, england)
|
There is a village in England.
|
∃x (Village(x) ∧ In(x, england))
|
There is no civil parish in England.
|
¬(∃x (CivilParish(x) ∧ In(x, england)))
|
Douglas Adams is an author who created the book collection called The Salmon of Doubt.
|
Author(douglasAdams) ∧ Authored(douglasAdams, theSalmonOfDoubt) ∧ Book(theSalmonOfDoubt)
|
The Salmon of Doubt is about life experiences and technology.
|
About(theSalmonOfDoubt, lifeExperience) ∧ About(theSalmonOfDoubt, technology)
|
All authors are writers.
|
∀x (Author(x) → Writer(x))
|
Writers create innovative ideas.
|
∀x (Writer(x) → Create(x, innovativeIdea))
|
Some books that contain innovative ideas are about technology.
|
∃x ∃y (Contain(x, innovativeIdea) ∧ About(x, technology) ∧ (¬(x=y)) ∧ (Contain(y, innovativeIdea) ∧ About(y, technology)))
|
Douglas Adams is a writer.
|
Writer(douglasAdams)
|
Douglas Adams created innovative ideas.
|
Create(douglasAdams, innovativeIdea)
|
The Salmon of Doubt has no innovative Ideas.
|
¬Contain(theSalmonOfDoubt, innovativeIdea)
|
No disposable products can help slow down global warming.
|
∀x (Disposable(x) ∧ Product(x) → ¬HelpSlowDown(x, globalWarming))
|
All eco-friendly brands can help slow down global warming.
|
∀x (EcoFriendly(x) ∧ Brand(x) → Help(x, slowDownGlobalWarming))
|
All sustainable fashion brands are eco-friendly brands.
|
∀x (Sustainable(x) ∧ FashionBrand(x) → EcoFriendly(x) ∧ Brand(x))
|
All fast fashion products are disposable products.
|
∀x (FastFashion(x) ∧ Product(x) → Disposable(x) ∧ Product(x))
|
If Reformation is not helping slow down global warming, then Reformation is an eco-friendly brand or a sustainable fashion brand.
|
¬HelpSlowDown(reformation, globalWarming) → (EcoFriendly(reformation) ∧ Brand(reformation)) ∨ (Sustainable(reformation) ∧ FashionBrand(reformation))
|
Reformation is an eco-friendly brand.
|
EcoFriendly(reformation) ∧ Brand(reformation)
|
Reformation produces fast fashion products.
|
FastFashion(reformation) ∧ Product(reformation)
|
Reformation does not produce fast fashion products.
|
¬(FastFashion(reformation) ∧ Product(reformation))
|
Reformation does not produce fast fashion products or does not produce disposable products.
|
¬(FastFashion(reformation) ∧ Product(reformation)) ∨ ¬(Disposable(x) ∧ Product(x))
|
If Reformation produces disposable products, then Reformation produces fast fashion products.
|
(Disposable(reformation) ∧ Product(reformation)) → (FastFashion(reformation) ∧ Product(reformation))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.