source
stringlengths
17
113
target
stringlengths
8
165
what is the population density of the state with the smallest area ?
(density(B,A),smallest(C,(state(B),area(B,C))))
what is the population density of the state with the smallest population ?
(density(B,A),smallest(C,(state(B),population(B,C))))
what is the population density of wyoming ?
(density(B,A),const(B,stateid(wyoming)))
what is the population in boston ?
(population(B,A),const(B,cityid(boston,_)))
what is the population of alaska ?
(population(B,A),const(B,stateid(alaska)))
what is the population of arizona ?
(population(B,A),const(B,stateid(arizona)))
what is the population of atlanta ?
(population(B,A),const(B,cityid(atlanta,_)))
what is the population of atlanta ga ?
(population(B,A),const(B,cityid(atlanta,_)))
what is the population of austin ?
(population(B,A),const(B,cityid(austin,_)))
what is the population of austin texas ?
(population(B,A),const(B,cityid(austin,tx)))
what is the population of boston massachusetts ?
(population(B,A),const(B,cityid(boston,ma)))
what is the population of boulder ?
(population(B,A),const(B,cityid(boulder,_)))
what is the population of california ?
(population(B,A),const(B,stateid(california)))
what is the population of dallas ?
(population(B,A),const(B,cityid(dallas,_)))
what is the population of denver ?
(population(B,A),const(B,cityid(denver,_)))
what is the population of erie pennsylvania ?
(population(B,A),const(B,cityid(erie,pa)))
what is the population of hawaii ?
(population(B,A),const(B,stateid(hawaii)))
what is the population of houston ?
(population(B,A),const(B,cityid(houston,_)))
what is the population of idaho ?
(population(B,A),const(B,stateid(idaho)))
what is the population of illinois ?
(population(B,A),const(B,stateid(illinois)))
what is the population of maine ?
(population(B,A),const(B,stateid(maine)))
what is the population of maryland ?
(population(B,A),const(B,stateid(maryland)))
what is the population of minnesota ?
(population(B,A),const(B,stateid(minnesota)))
what is the population of montana ?
(population(B,A),const(B,stateid(montana)))
what is the population of new mexico ?
(population(B,A),const(B,stateid('new mexico')))
what is the population of new york ?
(population(B,A),const(B,stateid('new york')))
what is the population of new york city ?
(population(B,A),const(B,cityid('new york',_)))
what is the population of oregon ?
(population(B,A),const(B,stateid(oregon)))
what is the population of portland maine ?
(population(B,A),const(B,cityid(portland,me)))
what is the population of rhode island ?
(population(B,A),const(B,stateid('rhode island')))
what is the population of sacramento ?
(population(B,A),const(B,cityid(sacramento,_)))
what is the population of san antonio ?
(population(B,A),const(B,cityid('san antonio',_)))
what is the population of seattle ?
(population(B,A),const(B,cityid(seattle,_)))
what is the population of seattle washington ?
(population(B,A),const(B,cityid(seattle,wa)))
what is the population of south dakota ?
(population(B,A),const(B,stateid('south dakota')))
what is the population of springfield missouri ?
(population(B,A),const(B,cityid(springfield,mo)))
what is the population of springfield south dakota ?
(population(B,A),const(B,cityid(springfield,sd)))
what is the population of tempe arizona ?
(population(B,A),const(B,cityid(tempe,az)))
what is the population of texas ?
(population(B,A),const(B,stateid(texas)))
what is the population of the capital of the largest state ?
(population(B,A),capital(B),loc(B,C),largest(C,state(C)))
what is the population of the capital of the largest state through which the mississippi runs ?
(population(B,A),capital(B),loc(B,C),largest(C,(state(C),const(D,riverid(mississippi)),traverse(D,C))))
what is the population of the capital of the smallest state ?
(population(B,A),capital(B),loc(B,C),smallest(C,state(C)))
what is the population of the largest city in the state with the largest area ?
(population(B,A),largest(B,(city(B),loc(B,C),largest(D,(state(C),area(C,D))))))
what is the population of the largest state ?
(population(B,A),largest(B,state(B)))
what is the population of the largest state that borders texas ?
(population(B,A),largest(B,(state(B),next_to(B,C),const(C,stateid(texas)))))
what is the population of the major cities in wisconsin ?
(population(B,A),major(B),city(B),loc(B,C),const(C,stateid(wisconsin)))
what is the population of the smallest state ?
smallest(B,(population(B,A),state(B)))
what is the population of the state that borders the most states ?
(population(B,A),most(B,C,(state(B),next_to(B,C),state(C))))
what is the population of the state with the highest population density ?
(population(B,A),largest(C,(state(B),density(B,C))))
what is the population of the state with the largest area ?
(population(B,A),largest(C,(state(B),area(B,C))))
what is the population of tucson ?
(population(B,A),const(B,cityid(tucson,_)))
what is the population of utah ?
(population(B,A),const(B,stateid(utah)))
what is the population of washington ?
(population(B,A),const(B,stateid(washington)))
what is the population of washington dc ?
(population(B,A),const(B,cityid(washington,dc)))
what is the river that cross over ohio ?
(river(A),traverse(A,B),const(B,stateid(ohio)))
what is the shortest river ?
shortest(A,river(A))
what is the shortest river in alaska ?
shortest(A,(river(A),loc(A,B),const(B,stateid(alaska))))
what is the shortest river in iowa ?
shortest(A,(river(A),loc(A,B),const(B,stateid(iowa))))
what is the shortest river in nebraska ?
shortest(A,(river(A),loc(A,B),const(B,stateid(nebraska))))
what is the shortest river in texas ?
shortest(A,(river(A),loc(A,B),const(B,stateid(texas))))
what is the shortest river in the united states ?
shortest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the shortest river in the us ?
shortest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the shortest river in the usa ?
shortest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the size of california ?
(size(B,A),const(B,stateid(california)))
what is the size of florida ?
(size(B,A),const(B,stateid(florida)))
what is the size of texas ?
(size(B,A),const(B,stateid(texas)))
what is the size of the capital of texas ?
(size(B,A),capital(B),loc(B,C),const(C,stateid(texas)))
what is the size of the largest state in the usa ?
(size(B,A),largest(B,(state(B),loc(B,C),const(C,countryid(usa)))))
what is the smallest city in alaska ?
smallest(A,(city(A),loc(A,B),const(B,stateid(alaska))))
what is the smallest city in arkansas ?
smallest(A,(city(A),loc(A,B),const(B,stateid(arkansas))))
what is the smallest city in hawaii ?
smallest(A,(city(A),loc(A,B),const(B,stateid(hawaii))))
what is the smallest city in the largest state ?
smallest(A,(city(A),loc(A,B),largest(B,state(B))))
what is the smallest city in the us ?
smallest(A,(city(A),loc(A,B),const(B,countryid(usa))))
what is the smallest city in the usa ?
smallest(A,(city(A),loc(A,B),const(B,countryid(usa))))
what is the smallest city in washington ?
smallest(A,(city(A),loc(A,B),const(B,stateid(washington))))
what is the smallest city of the smallest state in the us ?
smallest(A,(city(A),loc(A,B),smallest(B,(state(B),loc(B,C),const(C,countryid(usa))))))
what is the smallest state bordering ohio ?
smallest(A,(state(A),next_to(A,B),const(B,stateid(ohio))))
what is the smallest state bordering wyoming ?
smallest(A,(state(A),next_to(A,B),const(B,stateid(wyoming))))
what is the smallest state by area ?
smallest(B,(state(A),area(A,B)))
what is the smallest state in the usa ?
smallest(A,(state(A),loc(A,B),const(B,countryid(usa))))
what is the smallest state that borders texas ?
smallest(A,(state(A),next_to(A,B),const(B,stateid(texas))))
what is the smallest state that borders the most states ?
smallest(A,most(A,B,(state(A),next_to(A,B),state(B))))
what is the smallest state that the mississippi river runs through ?
smallest(A,(state(A),const(B,riverid(mississippi)),river(B),traverse(B,A)))
what is the smallest state through which the longest river runs ?
smallest(A,(state(A),longest(B,river(B)),traverse(B,A)))
what is the state that contains the highest point ?
(state(A),loc(B,A),highest(B,place(B)))
what is the state with the highest elevation in the united states ?
(state(A),loc(B,A),highest(B,(place(B),loc(B,C),const(C,countryid(usa)))))
what is the state with the largest area ?
largest(B,(state(A),area(A,B)))
what is the state with the largest density in usa ?
largest(B,(state(A),density(A,B),loc(A,C),const(C,countryid(usa))))
what is the state with the largest population density ?
largest(B,(state(A),density(A,B)))
what is the state with the lowest point ?
(state(A),loc(B,A),lowest(B,place(B)))
what is the state with the lowest population ?
smallest(B,(state(A),population(A,B)))
what is the state with the lowest population density ?
smallest(B,(state(A),density(A,B)))
what is the state with the smallest area ?
smallest(B,(state(A),area(A,B)))
what is the tallest mountain in america ?
highest(A,(mountain(A),loc(A,B),const(B,countryid(usa))))
what is the tallest mountain in the united states ?
highest(A,(mountain(A),loc(A,B),const(B,countryid(usa))))
what is the total area of the usa ?
(area(B,A),const(B,countryid(usa)))
what is the total length of all rivers in the usa ?
sum(B,(len(C,B),river(C)),A)
what is the total population of the states that border texas ?
sum(B,(population(C,B),state(C),next_to(D,C),const(D,stateid(texas))),A)
what length is the mississippi ?
(len(B,A),const(B,riverid(mississippi)))
what major cities are located in pennsylvania ?
(major(A),city(A),loc(A,B),const(B,stateid(pennsylvania)))