source
stringlengths
17
113
target
stringlengths
8
165
what is the highest point in wyoming ?
highest(A,(place(A),loc(A,B),const(B,stateid(wyoming))))
what is the highest point of the state with the largest area ?
highest(A,(place(A),loc(A,B),largest(C,(state(B),area(B,C)))))
what is the highest point of the state with the smallest population density ?
highest(A,(place(A),loc(A,B),smallest(C,(state(B),density(B,C)))))
what is the highest point of the usa ?
highest(A,(place(A),loc(A,B),const(B,countryid(usa))))
what is the largest capital ?
largest(A,capital(A))
what is the largest capital city in the usa ?
largest(A,(capital(A),city(A),loc(A,B),const(B,countryid(usa))))
what is the largest city in a state that borders texas ?
largest(A,(city(A),loc(A,B),state(B),next_to(B,C),const(C,stateid(texas))))
what is the largest city in alabama ?
largest(A,(city(A),loc(A,B),const(B,stateid(alabama))))
what is the largest city in california ?
largest(A,(city(A),loc(A,B),const(B,stateid(california))))
what is the largest city in michigan ?
largest(A,(city(A),loc(A,B),const(B,stateid(michigan))))
what is the largest city in minnesota by population ?
largest(B,(city(A),loc(A,C),const(C,stateid(minnesota)),population(A,B)))
what is the largest city in missouri ?
largest(A,(city(A),loc(A,B),const(B,stateid(missouri))))
what is the largest city in rhode island ?
largest(A,(city(A),loc(A,B),const(B,stateid('rhode island'))))
what is the largest city in smallest state through which the mississippi runs ?
largest(A,(city(A),loc(A,B),smallest(B,(state(B),const(C,riverid(mississippi)),traverse(C,B)))))
what is the largest city in states that border california ?
largest(A,(city(A),loc(A,B),state(B),next_to(B,C),const(C,stateid(california))))
what is the largest city in texas ?
largest(A,(city(A),loc(A,B),const(B,stateid(texas))))
what is the largest city in the smallest state in the usa ?
largest(A,(city(A),loc(A,B),smallest(B,(state(B),loc(B,C),const(C,countryid(usa))))))
what is the largest city in wisconsin ?
largest(A,(city(A),loc(A,B),const(B,stateid(wisconsin))))
what is the largest city of kansas ?
largest(A,(city(A),loc(A,B),const(B,stateid(kansas))))
what is the largest of the state that the rio grande runs through ?
largest(A,(state(A),const(B,riverid('rio grande')),traverse(B,A)))
what is the largest river in washington state ?
largest(A,(river(A),loc(A,B),const(B,stateid(washington))))
what is the largest state ?
largest(A,state(A))
what is the largest state bordering arkansas ?
largest(A,(state(A),next_to(A,B),const(B,stateid(arkansas))))
what is the largest state bordering texas ?
largest(A,(state(A),next_to(A,B),const(B,stateid(texas))))
what is the largest state capital in population ?
largest(B,(state(C),capital(C,A),population(A,B)))
what is the largest state in the us ?
largest(A,(state(A),loc(A,B),const(B,countryid(usa))))
what is the largest state in usa ?
largest(A,(state(A),loc(A,B),const(B,countryid(usa))))
what is the largest state that borders california ?
largest(A,(state(A),next_to(A,B),const(B,stateid(california))))
what is the largest state that borders texas ?
largest(A,(state(A),next_to(A,B),const(B,stateid(texas))))
what is the largest state that borders the state with the highest population ?
largest(A,(state(A),next_to(A,B),largest(C,(state(B),population(B,C)))))
what is the largest state that borders the state with the lowest point in the usa ?
largest(A,(state(A),next_to(A,B),state(B),loc(C,B),lowest(C,(place(C),loc(C,D),const(D,countryid(usa))))))
what is the largest state traversed by the mississippi river ?
largest(A,(state(A),traverse(B,A),const(B,riverid(mississippi))))
what is the least populous state ?
smallest(B,(population(A,B),state(A)))
what is the length of the colorado river ?
(len(B,A),const(B,riverid(colorado)),river(B))
what is the length of the colorado river in texas ?
(len(B,A),const(B,riverid(colorado)),river(B),loc(B,C),const(C,stateid(texas)))
what is the length of the longest river in the usa ?
(len(B,A),longest(B,(river(B),loc(B,C),const(C,countryid(usa)))))
what is the length of the longest river that runs through texas ?
(len(B,A),longest(B,(river(B),traverse(B,C),const(C,stateid(texas)))))
what is the length of the mississippi river ?
(len(B,A),const(B,riverid(mississippi)),river(B))
what is the length of the river that flows through the most states ?
(len(B,A),most(B,C,(river(B),traverse(B,C),state(C))))
what is the length of the river that runs through the most number of states ?
(len(B,A),most(B,C,(river(B),traverse(B,C),state(C))))
what is the length of the river that runs through the most states ?
(len(B,A),most(B,C,(river(B),traverse(B,C),state(C))))
what is the length of the river that traverses the most states ?
(len(B,A),most(B,C,(river(B),traverse(B,C),state(C))))
what is the longest river ?
longest(A,river(A))
what is the longest river flowing through new york ?
longest(A,(river(A),traverse(A,B),const(B,stateid('new york'))))
what is the longest river in america ?
longest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the longest river in california ?
longest(A,(river(A),loc(A,B),const(B,stateid(california))))
what is the longest river in florida ?
longest(A,(river(A),loc(A,B),const(B,stateid(florida))))
what is the longest river in mississippi ?
longest(A,(river(A),loc(A,B),const(B,stateid(mississippi))))
what is the longest river in new york ?
longest(A,(river(A),loc(A,B),const(B,stateid('new york'))))
what is the longest river in pennsylvania ?
longest(A,(river(A),loc(A,B),const(B,stateid(pennsylvania))))
what is the longest river in texas ?
longest(A,(river(A),loc(A,B),const(B,stateid(texas))))
what is the longest river in the largest state ?
longest(A,(river(A),loc(A,B),largest(B,state(B))))
what is the longest river in the smallest state in the usa ?
longest(A,(river(A),loc(A,B),smallest(B,(state(B),loc(B,C),const(C,countryid(usa))))))
what is the longest river in the state with the highest point ?
longest(A,(river(A),loc(A,B),state(B),loc(C,B),highest(C,place(C))))
what is the longest river in the state with the most major cities ?
longest(A,(river(A),loc(A,B),most(B,C,(state(B),loc(C,B),major(C),city(C)))))
what is the longest river in the states that border nebraska ?
longest(A,(river(A),loc(A,B),state(B),next_to(B,C),const(C,stateid(nebraska))))
what is the longest river in the united states ?
longest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the longest river in the us ?
longest(A,(river(A),loc(A,B),const(B,countryid(usa))))
what is the longest river that does not run through texas ?
longest(A,(river(A),\+ (traverse(A,B),const(B,stateid(texas)))))
what is the longest river that flows through a state that borders indiana ?
longest(A,(river(A),traverse(A,B),state(B),next_to(B,C),const(C,stateid(indiana))))
what is the longest river that flows through colorado ?
longest(A,(river(A),traverse(A,B),const(B,stateid(colorado))))
what is the longest river that passes the states that border the state that borders the most states ?
longest(A,(river(A),traverse(A,B),state(B),next_to(B,C),most(C,D,(state(C),next_to(C,D),state(D)))))
what is the longest river that runs through a state that borders tennessee ?
longest(A,(river(A),traverse(A,B),state(B),next_to(B,C),const(C,stateid(tennessee))))
what is the lowest elevation in pennsylvania ?
lowest(A,(place(A),loc(A,B),const(B,stateid(pennsylvania))))
what is the lowest point in arkansas ?
lowest(A,(place(A),loc(A,B),const(B,stateid(arkansas))))
what is the lowest point in california ?
lowest(A,(place(A),loc(A,B),const(B,stateid(california))))
what is the lowest point in louisiana ?
lowest(A,(place(A),loc(A,B),const(B,stateid(louisiana))))
what is the lowest point in massachusetts ?
lowest(A,(place(A),loc(A,B),const(B,stateid(massachusetts))))
what is the lowest point in mississippi ?
lowest(A,(place(A),loc(A,B),const(B,stateid(mississippi))))
what is the lowest point in nebraska in meters ?
lowest(A,(place(A),loc(A,B),const(B,stateid(nebraska))))
what is the lowest point in oregon ?
lowest(A,(place(A),loc(A,B),const(B,stateid(oregon))))
what is the lowest point in texas ?
lowest(A,(place(A),loc(A,B),const(B,stateid(texas))))
what is the lowest point in the state of california ?
lowest(A,(place(A),loc(A,B),state(B),const(B,stateid(california))))
what is the lowest point in the state of texas ?
lowest(A,(place(A),loc(A,B),state(B),const(B,stateid(texas))))
what is the lowest point in the united states ?
lowest(A,(place(A),loc(A,B),const(B,countryid(usa))))
what is the lowest point in usa ?
lowest(A,(place(A),loc(A,B),const(B,countryid(usa))))
what is the lowest point in wisconsin ?
lowest(A,(place(A),loc(A,B),const(B,stateid(wisconsin))))
what is the lowest point of all states through which the colorado river runs through ?
lowest(A,(place(A),loc(A,B),state(B),const(C,riverid(colorado)),river(C),traverse(C,B)))
what is the lowest point of colorado ?
lowest(A,(place(A),loc(A,B),const(B,stateid(colorado))))
what is the lowest point of the state with the largest area ?
lowest(A,(place(A),loc(A,B),largest(C,(state(B),area(B,C)))))
what is the lowest point of the us ?
lowest(A,(place(A),loc(A,B),const(B,countryid(usa))))
what is the major cities in montana ?
(major(A),city(A),loc(A,B),const(B,stateid(montana)))
what is the maximum elevation of san francisco ?
highest(A,(place(A),loc(A,B),const(B,cityid('san francisco',_))))
what is the most dense state in the usa ?
largest(B,(density(A,B),state(A),loc(A,C),const(C,countryid(usa))))
what is the most populated capital in the usa ?
largest(B,(population(A,B),capital(A),loc(A,C),const(C,countryid(usa))))
what is the most populated state bordering oklahoma ?
largest(B,(population(A,B),state(A),next_to(A,C),const(C,stateid(oklahoma))))
what is the most populous city ?
largest(B,(population(A,B),city(A)))
what is the most populous city in texas ?
largest(A,(population(B,A),city(B),loc(B,C),const(C,stateid(texas))))
what is the most populous city in wyoming ?
largest(B,(population(A,B),city(A),loc(A,C),const(C,stateid(wyoming))))
what is the most populous state ?
largest(B,(population(A,B),state(A)))
what is the most populous state in the us ?
largest(B,(population(A,B),state(A),loc(A,C),const(C,countryid(usa))))
what is the most populous state through which the mississippi runs ?
largest(B,(population(A,B),state(A),const(C,riverid(mississippi)),traverse(C,A)))
what is the name of the state with the lowest point ?
(state(A),loc(B,A),lowest(B,place(B)))
what is the number of neighboring states for kentucky ?
count(B,(state(B),next_to(B,C),const(C,stateid(kentucky))),A)
what is the population density in the state with capital austin ?
(density(B,A),state(B),loc(C,B),capital(C),const(C,cityid(austin,_)))
what is the population density of maine ?
(density(B,A),const(B,stateid(maine)))
what is the population density of south dakota ?
(density(B,A),const(B,stateid('south dakota')))
what is the population density of texas ?
(density(B,A),const(B,stateid(texas)))
what is the population density of the largest state ?
(density(B,A),largest(B,state(B)))
what is the population density of the smallest state ?
(density(B,A),smallest(B,state(B)))