text
stringlengths
0
418
ID: 125
Fact:
0. meets(William, Mia)
1. meets(William, Dave)
2. eats(Mia, Charlie)
3. meets(Mia, Dave)
4. meets(Charlie, William)
5. argues(Mia, Dave)
Rule:
0. argues(?x, ?y) -> is(?x, young, 1y+2)
1. is(?x, white, 2) -> is(?x, young, 1)
2. is(?x, gruff, 2) -> is(?x, white, 4)
3. is(?x, gruff, 1) -> is(?x, white, 4)
4. is(?x, young, 3) -> is(?x, white, 4)
5. eats(?x, ?y) -> is(?x, gruff, 2y+4)
Assertion:
less(Mia, gruff, 1)
Answer:
False
One reasoning:
['Fact2', 'Rule5', ['Default']]
Step reasoning:
Default -> int0: Charlie is 0 gruff; Fact2 & Rule5 & int0 -> int1: Mia is 2*0+4=4 gruff
ID: 126
Fact:
0. meets(Dave, Alice)
1. is(Emily, big, 3)
2. meets(Alice, Benjamin)
3. is(Benjamin, generous, 1)
4. sees(Emily, Benjamin)
5. needs(Emily, Dave)
Rule:
0. is(?x, reserved, 2) -> is(?x, generous, 3)
1. is(?x, reserved, 3) -> is(?x, big, 3)
2. meets(?x, ?y) -> is(?x, reserved, 1y+1)
3. is(?x, big, 2) -> is(?x, reserved, 1)
4. meets(?x, ?y) -> is(?x, quiet, 2y+4)
5. sees(?x, ?y) -> is(?x, generous, 1y+2)
Assertion:
less(Alice, quiet, 4)
Answer:
False
One reasoning:
['Fact2', 'Rule4', ['Default']]
Step reasoning:
Default -> int0: Benjamin is 0 quiet; Fact2 & Rule4 & int0 -> int1: Alice is 2*0+4=4 quiet
ID: 127
Fact:
0. interacts(James, Michael)
1. interacts(Michael, Bob)
2. eats(Liam, James)
3. greets(Bob, Michael)
4. greets(Michael, James)
5. greets(James, Bob)
Rule:
0. is(?x, furry, 4) -> is(?x, smart, 4)
1. eats(?x, ?y) -> is(?x, smart, 1y+2)
2. is(?x, smart, 1) -> is(?x, big, 2)
3. eats(?x, ?y) -> is(?x, white, 1y+2)
4. interacts(?x, ?y) -> is(?x, big, 2y+4)
5. is(?x, smart, 3) -> is(?x, white, 4)
Assertion:
less(Liam, white, 7)
Answer:
True
One reasoning:
['Fact2', 'Rule3', ['Default']]
Step reasoning:
Default -> int0: James is 0 white; Fact2 & Rule3 & int0 -> int1: Liam is 0+2=2 white
ID: 128
Fact:
0. likes(Mia, Emma)
1. sees(Hannah, James)
2. likes(James, Hannah)
3. likes(Mia, Hannah)
4. greets(James, Emma)
5. likes(Emma, James)
Rule:
0. is(?x, considerate, 2) -> is(?x, kind, 2)
1. sees(?x, ?y) -> is(?x, kind, 1y+2)
2. is(?x, considerate, 1) -> is(?x, generous, 3)
3. is(?x, nice, 3) -> is(?x, kind, 2)
4. greets(?x, ?y) -> is(?x, generous, 2y+1)
5. greets(?x, ?y) -> is(?x, kind, 1y+4)
Assertion:
greater(James, generous, 1)
Answer:
False
One reasoning:
['Fact4', 'Rule4', ['Default']]
Step reasoning:
Default -> int0: Emma is 0 generous; Fact4 & Rule4 & int0 -> int1: James is 2*0+1=1 generous
ID: 129
Fact:
0. is(Daniel, reserved, 1)
1. meets(William, Harry)