first order deduction for large knowledge bases
play

First-Order Deduction for Large Knowledge Bases Stephan Schulz - PowerPoint PPT Presentation

First-Order Deduction for Large Knowledge Bases Stephan Schulz schulz@eprover.org E Stephan Schulz Interest in Large Theories 2007 ESARLT at CADE-21 in Bremen Ontologies (SUMO) Common Sense Reasoning (CYC) Mizar 2008 First


  1. First-Order Deduction for Large Knowledge Bases Stephan Schulz schulz@eprover.org E

  2. Stephan Schulz Interest in Large Theories 2007 ESARLT at CADE-21 in Bremen Ontologies (SUMO) ◮ Common Sense Reasoning (CYC) ◮ Mizar ◮ 2008 First CASC LTB at IJCAR in Sydney MaLARea, SInE, Vampire LTB ◮ 2009 CASC LTB at CADE-22 in Montreal 2010 CASC LTB in IJCAR in Edinburgh Rules change every year! ◮ 2

  3. Stephan Schulz Interest in Large Theories 2007 ESARLT at CADE-21 in Bremen Ontologies (SUMO) ◮ Common Sense Reasoning (CYC) ◮ Mizar ◮ 2008 First CASC LTB at IJCAR in Sydney MaLARea, SInE, Vampire LTB ◮ 2009 CASC LTB at CADE-22 in Montreal 2010 CASC LTB in IJCAR in Edinburgh Rules change every year! ◮ 2

  4. Stephan Schulz Interest in Large Theories 2007 ESARLT at CADE-21 in Bremen Ontologies (SUMO) ◮ Common Sense Reasoning (CYC) ◮ Mizar ◮ 2008 First CASC LTB at IJCAR in Sydney MaLARea, SInE, Vampire LTB ◮ 2009 CASC LTB at CADE-22 in Montreal 2010 CASC LTB in IJCAR in Edinburgh Rules change every year! ◮ 2

  5. Stephan Schulz Interest in Large Theories 2007 ESARLT at CADE-21 in Bremen Ontologies (SUMO) ◮ Common Sense Reasoning (CYC) ◮ Mizar ◮ 2008 First CASC LTB at IJCAR in Sydney MaLARea, SInE, Vampire LTB ◮ 2009 CASC LTB at CADE-22 in Montreal 2010 CASC LTB in IJCAR in Edinburgh Rules change every year! ◮ 2

  6. Stephan Schulz Saturation-Based Theorem Proving Axioms Conjecture Leading approach for first-order reasoning Proof by refutation ◮ Clausification Conjecture and axioms ◮ converted to flat CNF CNF CNF Saturation with destructive ◮ simplification Goal: Empty clause ◮ Saturation Powerful calculi ◮ Highly advanced data ◮ structures Proof Decent search heuristics ◮ (?) 3

  7. Stephan Schulz A Classical Example: Reasoning in Rings 4

  8. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). A ring with x 3 =x is cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). commutative %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). ‣ 9 formulas cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). ‣ 3 KB of text (with %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). comments) %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). Proof search %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). ‣ ~200000 steps cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). ‣ ~50 MB of text cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 5

  9. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). A ring with x 3 =x is cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). commutative %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). ‣ 9 formulas cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). ‣ 3 KB of text (with %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). comments) %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). Proof search %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). ‣ ~200000 steps cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). ‣ ~50 MB of text cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 5

  10. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). A ring with x 3 =x is cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). commutative %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). ‣ 9 formulas cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). ‣ 3 KB of text (with %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). comments) %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). Proof search %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). ‣ ~200000 steps cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). ‣ ~50 MB of text cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 5

  11. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). A ring with x 3 =x is cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). commutative %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). ‣ 9 formulas cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). ‣ 3 KB of text (with %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). comments) %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). Proof search %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). ‣ ~200000 steps cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). ‣ ~50 MB of text cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 5

  12. Stephan Schulz The Matter of Scaling 6

  13. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 7

  14. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 7

  15. Stephan Schulz %----Right identity and inverse cnf(right_identity,axiom, ( add(X,additive_identity) = X )). cnf(right_additive_inverse,axiom, ( add(X,additive_inverse(X)) = additive_identity )). %----Distributive property of product over sum cnf(distribute1,axiom, ( multiply(X,add(Y,Z)) = add(multiply(X,Y),multiply(X,Z)) )). cnf(distribute2,axiom, ( multiply(add(X,Y),Z) = add(multiply(X,Z),multiply(Y,Z)) )). %----Associativity of addition cnf(associative_addition,axiom, ( add(add(X,Y),Z) = add(X,add(Y,Z)) )). %----Commutativity of addition cnf(commutative_addition,axiom, ( add(X,Y) = add(Y,X) )). %----Associativity of product cnf(associative_multiplication,axiom, ( multiply(multiply(X,Y),Z) = multiply(X,multiply(Y,Z)) )). cnf(x_cubed_is_x,hypothesis, ( multiply(X,multiply(X,X)) = X )). cnf(prove_commutativity,negated_conjecture, ( multiply(a,b) != multiply(b,a) )). RNG009-5: Peterson/Stickel, 1981 7

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend