text
stringlengths
0
418
ID: 100
Fact:
0. eats(Alice, Charlie)
1. needs(Harry, Charlie)
2. meets(Alice, Charlie)
3. eats(Charlie, Harry)
4. needs(Harry, Alice)
5. meets(Alice, Harry)
Rule:
0. is(?x, friendly, 2) -> is(?x, blue, 2)
1. eats(?x, ?y) -> is(?x, young, 1y+3)
2. eats(?x, ?y) -> is(?x, compassionate, 2y+1)
3. is(?x, friendly, 1) -> is(?x, blue, 3)
4. is(?x, young, 2) -> is(?x, blue, 2)
5. is(?x, blue, 1) -> is(?x, compassionate, 4)
Assertion:
less(Charlie, compassionate, 2)
Answer:
True
One reasoning:
['Fact3', 'Rule2', ['Default']]
Step reasoning:
Default -> int0: Harry is 0 compassionate; Fact3 & Rule2 & int0 -> int1: Charlie is 2*0+1=1 compassionate
ID: 101
Fact:
0. is(Daniel, friendly, 4)
1. likes(Amelia, Daniel)
2. likes(William, Daniel)
3. greets(Daniel, Amelia)
4. argues(Amelia, Dave)
5. is(Daniel, green, 3)
Rule:
0. is(?x, green, 3) -> is(?x, blue, 3)
1. is(?x, friendly, 3) -> is(?x, blue, 1)
2. likes(?x, ?y) -> is(?x, friendly, 2y+2)
3. is(?x, blue, 2) -> is(?x, nice, 4)
4. is(?x, green, 4) -> is(?x, nice, 1)
5. is(?x, nice, 2) -> is(?x, blue, 4)
Assertion:
greater(Amelia, friendly, 7)
Answer:
True
One reasoning:
['Fact1', 'Rule2', ['Fact0']]
Step reasoning:
Fact0 -> int0: Daniel is 4 friendly; Fact1 & Rule2 & int0 -> int1: Amelia is 2*4+2=10 friendly
ID: 102
Fact:
0. likes(Benjamin, Michael)
1. likes(Michael, Bob)
2. argues(Grace, Benjamin)
3. argues(Michael, Grace)
4. greets(Benjamin, Michael)
5. likes(Grace, Michael)
Rule:
0. likes(?x, ?y) -> is(?x, gruff, 1y+4)
1. is(?x, rough, 2) -> is(?x, white, 2)
2. is(?x, gruff, 3) -> is(?x, rough, 4)
3. is(?x, gruff, 2) -> is(?x, furry, 4)
4. is(?x, white, 1) -> is(?x, gruff, 4)
5. greets(?x, ?y) -> is(?x, furry, 2y+1)
Assertion:
greater(Michael, gruff, 1)
Answer:
True
One reasoning:
['Fact1', 'Rule0', ['Default']]
Step reasoning:
Default -> int0: Bob is 0 gruff; Fact1 & Rule0 & int0 -> int1: Michael is 0+4=4 gruff
ID: 103
Fact:
0. needs(Benjamin, Fiona)
1. chases(Amelia, Benjamin)
2. chases(Fiona, Amelia)
3. needs(Fiona, William)
4. sees(Fiona, William)
5. sees(Amelia, Fiona)
Rule:
0. chases(?x, ?y) -> is(?x, friendly, 2y+2)
1. sees(?x, ?y) -> is(?x, generous, 1y+1)
2. is(?x, considerate, 2) -> is(?x, generous, 3)
3. is(?x, generous, 4) -> is(?x, young, 3)
4. chases(?x, ?y) -> is(?x, young, 2y+2)
5. sees(?x, ?y) -> is(?x, considerate, 2y+3)
Assertion:
greater(Fiona, considerate, 1)
Answer:
True
One reasoning:
['Fact4', 'Rule5', ['Default']]
Step reasoning:
Default -> int0: William is 0 considerate; Fact4 & Rule5 & int0 -> int1: Fiona is 2*0+3=3 considerate
ID: 104
Fact:
0. greets(Dave, Bob)
1. visits(Dave, Mia)