NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications. Gerwin Klein Formal Methods

Size: px
Start display at page:

Download "NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications. Gerwin Klein Formal Methods"

Transcription

1 NICTA Advanced Course Theorem Proving Principles, Techniques, Applications Gerwin Klein Formal Methods 1

2 ORGANISATORIALS When Mon 14:00 15:30 Wed 10:30 12:00 7 weeks ends Mon, Exceptions Mon 6.9., 13.9., at 15:00 16:30 Web page: kleing/teaching/thprv-04/ free no credits no assigments ORGANISATORIALS 2

3 WHAT YOU WILL LEARN how to use a theorem prover WHAT YOU WILL LEARN 3

4 WHAT YOU WILL LEARN how to use a theorem prover background, how it works WHAT YOU WILL LEARN 3-A

5 WHAT YOU WILL LEARN how to use a theorem prover background, how it works how to prove and specify WHAT YOU WILL LEARN 3-B

6 WHAT YOU WILL LEARN how to use a theorem prover background, how it works how to prove and specify Health Warning Theorem Proving is addictive WHAT YOU WILL LEARN 3-C

7 WHAT YOU WILL NOT LEARN semantics / model theory WHAT YOU WILL NOT LEARN 4

8 WHAT YOU WILL NOT LEARN semantics / model theory soundness / completeness proofs WHAT YOU WILL NOT LEARN 4-A

9 WHAT YOU WILL NOT LEARN semantics / model theory soundness / completeness proofs decision procedures WHAT YOU WILL NOT LEARN 4-B

10 CONTENT Intro & motivation, getting started with Isabelle (today) CONTENT 5

11 CONTENT Intro & motivation, getting started with Isabelle (today) Foundations & Principles Lambda Calculus Higher Order Logic, natural deduction Term rewriting CONTENT 5-A

12 CONTENT Intro & motivation, getting started with Isabelle (today) Foundations & Principles Lambda Calculus Higher Order Logic, natural deduction Term rewriting Proof & Specification Techniques Datatypes, recursion, induction Inductively defined sets, rule induction Calculational reasoning, mathematics style proofs Hoare logic, proofs about programs CONTENT 5-B

13 CREDITS material (in part) shamelessly stolen from Tobias Nipkow, Larry Paulson, Markus Wenzel David Basin, Burkhardt Wolff Don t blame them, errors are mine CREDITS 6

14 WHAT IS A PROOF? to prove WHAT IS A PROOF? 7

15 WHAT IS A PROOF? to prove (Marriam-Webster) from Latin probare (test, approve, prove) WHAT IS A PROOF? 7-A

16 WHAT IS A PROOF? to prove (Marriam-Webster) from Latin probare (test, approve, prove) to learn or find out by experience (archaic) WHAT IS A PROOF? 7-B

17 WHAT IS A PROOF? to prove (Marriam-Webster) from Latin probare (test, approve, prove) to learn or find out by experience (archaic) to establish the existence, truth, or validity of (by evidence or logic) prove a theorem, the charges were never proved in court WHAT IS A PROOF? 7-C

18 WHAT IS A PROOF? to prove (Marriam-Webster) from Latin probare (test, approve, prove) to learn or find out by experience (archaic) to establish the existence, truth, or validity of (by evidence or logic) prove a theorem, the charges were never proved in court pops up everywhere politics (weapons of mass destruction) courts (beyond reasonable doubt) religion (god exists) science (cold fusion works) WHAT IS A PROOF? 7-D

19 WHAT IS A MATHEMATICAL PROOF? In mathematics, a proof is a demonstration that, given certain axioms, some statement of interest is necessarily true. (Wikipedia) Example: 2 is not rational. Proof: WHAT IS A MATHEMATICAL PROOF? 8

20 WHAT IS A MATHEMATICAL PROOF? In mathematics, a proof is a demonstration that, given certain axioms, some statement of interest is necessarily true. (Wikipedia) Example: 2 is not rational. Proof: assume there is r Q such that r 2 = 2. Hence there are mutually prime p and q with r = p q. Thus 2q 2 = p 2, i.e. p 2 is divisible by 2. 2 is prime, hence it also divides p, i.e. p = 2s. Substituting this into 2q 2 = p 2 and dividing by 2 gives q 2 = 2s 2. Hence, q is also divisible by 2. Contradiction. Qed. WHAT IS A MATHEMATICAL PROOF? 8-A

21 NICE, BUT.. still not rigorous enough for some what are the rules? what are the axioms? how big can the steps be? what is obvious or trivial? informal language, easy to get wrong easy to miss something, easy to cheat NICE, BUT.. 9

22 NICE, BUT.. still not rigorous enough for some what are the rules? what are the axioms? how big can the steps be? what is obvious or trivial? informal language, easy to get wrong easy to miss something, easy to cheat Theorem. A cat has nine tails. Proof. No cat has eight tails. Since one cat has one more tail than no cat, it must have nine tails. NICE, BUT.. 9-A

23 WHAT IS A FORMAL PROOF? A derivation in a formal calculus WHAT IS A FORMAL PROOF? 10

24 WHAT IS A FORMAL PROOF? A derivation in a formal calculus Example: A B B A derivable in the following system Rules: X S S X (assumption) S X S Y S X Y (conji) S {X} Y S X Y (impi) S {X, Y } Z S {X Y } Z (conje) WHAT IS A FORMAL PROOF? 10-A

25 WHAT IS A FORMAL PROOF? A derivation in a formal calculus Example: A B B A derivable in the following system Rules: Proof: X S S X (assumption) S X S Y S X Y (conji) S {X} Y S X Y (impi) S {X, Y } Z S {X Y } Z (conje) 1. {A, B} B (by assumption) 2. {A, B} A (by assumption) 3. {A, B} B A (by conji with 1 and 2) 4. {A B} B A (by conje with 3) 5. {} A B B A (by impi with 4) WHAT IS A FORMAL PROOF? 10-B

26 WHAT IS A THEOREM PROVER? Implementation of a formal logic on a computer. fully automated (propositional logic) automated, but not necessarily terminating (first order logic) with automation, but mainly interactive (higher order logic) WHAT IS A THEOREM PROVER? 11

27 WHAT IS A THEOREM PROVER? Implementation of a formal logic on a computer. fully automated (propositional logic) automated, but not necessarily terminating (first order logic) with automation, but mainly interactive (higher order logic) based on rules and axioms can deliver proofs WHAT IS A THEOREM PROVER? 11-A

28 WHAT IS A THEOREM PROVER? Implementation of a formal logic on a computer. fully automated (propositional logic) automated, but not necessarily terminating (first order logic) with automation, but mainly interactive (higher order logic) based on rules and axioms can deliver proofs There are other (algorithmic) verification tools: model checking, static analysis,... usually do not deliver proofs WHAT IS A THEOREM PROVER? 11-B

29 WHY THEOREM PROVING? Analysing systems/programs thoroughly WHY THEOREM PROVING? 12

30 WHY THEOREM PROVING? Analysing systems/programs thoroughly Finding design and specification errors early WHY THEOREM PROVING? 12-A

31 WHY THEOREM PROVING? Analysing systems/programs thoroughly Finding design and specification errors early High assurance (mathematical, machine checked proof) WHY THEOREM PROVING? 12-B

32 WHY THEOREM PROVING? Analysing systems/programs thoroughly Finding design and specification errors early High assurance (mathematical, machine checked proof) it s not always easy it s fun WHY THEOREM PROVING? 12-C

33 Main theorem proving system for this course: = Isabelle λ β α 13

34 WHAT IS ISABELLE? A generic interactive proof assistant WHAT IS ISABELLE? 14

35 WHAT IS ISABELLE? A generic interactive proof assistant generic: not specialised to one particular logic (two large developments: HOL and ZF, will mainly use HOL) WHAT IS ISABELLE? 14-A

36 WHAT IS ISABELLE? A generic interactive proof assistant generic: not specialised to one particular logic (two large developments: HOL and ZF, will mainly use HOL) interactive: more than just yes/no, you can interactively guide the system WHAT IS ISABELLE? 14-B

37 WHAT IS ISABELLE? A generic interactive proof assistant generic: not specialised to one particular logic (two large developments: HOL and ZF, will mainly use HOL) interactive: more than just yes/no, you can interactively guide the system proof assistant: helps to explore, find, and maintain proofs WHAT IS ISABELLE? 14-C

38 WHY ISABELLE? free widely used system active development high expressiveness and automation reasonably easy to use WHY ISABELLE? 15

39 WHY ISABELLE? free widely used system active development high expressiveness and automation reasonably easy to use (and because I know it best ;-)) WHY ISABELLE? 15-A

40 WHY ISABELLE? free widely used system active development high expressiveness and automation reasonably easy to use (and because I know it best ;-)) We will see other systems, too: HOL4, Coq, Waldmeister WHY ISABELLE? 15-B

41 If I prove it on the computer, it is correct, right? 16

42 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17

43 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-A

44 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-B

45 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty ➂ implementation runtime system could be faulty IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-C

46 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty ➂ implementation runtime system could be faulty ➃ compiler could be faulty IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-D

47 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty ➂ implementation runtime system could be faulty ➃ compiler could be faulty ➄ implementation could be faulty IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-E

48 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty ➂ implementation runtime system could be faulty ➃ compiler could be faulty ➄ implementation could be faulty ➅ logic could be inconsistent IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-F

49 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, because: ➀ hardware could be faulty ➁ operating system could be faulty ➂ implementation runtime system could be faulty ➃ compiler could be faulty ➄ implementation could be faulty ➅ logic could be inconsistent ➆ theorem could mean something else IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 17-G

50 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18

51 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-A

52 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems 3 and 4 reduced by using different compilers IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-B

53 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems 3 and 4 reduced by using different compilers faulty implementation reduced by right architecture IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-C

54 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems 3 and 4 reduced by using different compilers faulty implementation reduced by right architecture inconsistent logic reduced by implementing and analysing it IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-D

55 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems 3 and 4 reduced by using different compilers faulty implementation reduced by right architecture inconsistent logic reduced by implementing and analysing it wrong theorem reduced by expressive/intuitive logics IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-E

56 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? No, but: probability for 1 and 2 reduced by using different systems 3 and 4 reduced by using different compilers faulty implementation reduced by right architecture inconsistent logic reduced by implementing and analysing it wrong theorem reduced by expressive/intuitive logics No guarantees, but assurance way higher than manual proof IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 18-F

57 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? Soundness architectures careful implementation PVS IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 19

58 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? Soundness architectures careful implementation LCF approach, small proof kernel PVS HOL4 Isabelle IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 19-A

59 IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? Soundness architectures careful implementation LCF approach, small proof kernel explicit proofs + proof checker PVS HOL4 Isabelle Coq Twelf Isabelle IF I PROVE IT ON THE COMPUTER, IT IS CORRECT, RIGHT? 19-B

60 META LOGIC Meta language: The language used to talk about another language. META LOGIC 20

61 META LOGIC Meta language: The language used to talk about another language. Examples: English in a Spanish class, English in an English class META LOGIC 20-A

62 META LOGIC Meta language: The language used to talk about another language. Examples: English in a Spanish class, English in an English class Meta logic: The logic used to formalize another logic Example: Mathematics used to formalize derivations in formal logic META LOGIC 20-B

63 META LOGIC EXAMPLE Syntax: Formulae: F ::= V F F F F F alse V ::= [A Z] Derivable: S X X a formula, S a set of formulae META LOGIC EXAMPLE 21

64 META LOGIC EXAMPLE Syntax: Formulae: F ::= V F F F F F alse V ::= [A Z] Derivable: S X X a formula, S a set of formulae logic / meta logic X S S X S X S Y S X Y S {X} Y S X Y S {X, Y } Z S {X Y } Z META LOGIC EXAMPLE 21-A

65 ISABELLE S META LOGIC = λ ISABELLE S META LOGIC 22

66 Syntax: in ASCII: x. F!!x. F (F another meta level formula) 23

67 Syntax: in ASCII: x. F!!x. F (F another meta level formula) universial quantifier on the meta level used to denote parameters example and more later 23-A

68 = Syntax: A = B (A, B other meta level formulae) in ASCII: A ==> B = 24

69 = Syntax: A = B (A, B other meta level formulae) in ASCII: A ==> B Binds to the right: A = B = C = A = (B = C) Abbreviation: [A; B ] = C = A = B = C read: A and B implies C used to write down rules, theorems, and proof states = 24-A

70 EXAMPLE: A THEOREM mathematics: if x < 0 and y < 0, then x + y < 0 EXAMPLE: A THEOREM 25

71 EXAMPLE: A THEOREM mathematics: if x < 0 and y < 0, then x + y < 0 formal logic: x < 0 y < 0 x + y < 0 variation: x < 0; y < 0 x + y < 0 EXAMPLE: A THEOREM 25-A

72 EXAMPLE: A THEOREM mathematics: if x < 0 and y < 0, then x + y < 0 formal logic: x < 0 y < 0 x + y < 0 variation: x < 0; y < 0 x + y < 0 Isabelle: lemma x < 0 y < 0 x + y < 0 variation: lemma [x < 0; y < 0] = x + y < 0 EXAMPLE: A THEOREM 25-B

73 EXAMPLE: A THEOREM mathematics: if x < 0 and y < 0, then x + y < 0 formal logic: x < 0 y < 0 x + y < 0 variation: x < 0; y < 0 x + y < 0 Isabelle: lemma x < 0 y < 0 x + y < 0 variation: lemma [x < 0; y < 0] = x + y < 0 variation: lemma assumes x < 0 and y < 0 shows x + y < 0 EXAMPLE: A THEOREM 25-C

74 EXAMPLE: A RULE logic: X Y X Y EXAMPLE: A RULE 26

75 EXAMPLE: A RULE logic: X Y X Y variation: S X S Y S X Y EXAMPLE: A RULE 26-A

76 EXAMPLE: A RULE logic: X Y X Y variation: S X S Y S X Y Isabelle: [X; Y ] = X Y EXAMPLE: A RULE 26-B

77 EXAMPLE: A RULE WITH NESTED IMPLICATION X... logic: X Y Z Z Ỵ.. Z EXAMPLE: A RULE WITH NESTED IMPLICATION 27

78 EXAMPLE: A RULE WITH NESTED IMPLICATION X... logic: X Y Z Z Ỵ.. Z variation: S {X} Z S {Y } Z S {X Y } Z EXAMPLE: A RULE WITH NESTED IMPLICATION 27-A

79 EXAMPLE: A RULE WITH NESTED IMPLICATION X... logic: X Y Z Z Ỵ.. Z variation: S {X} Z S {Y } Z S {X Y } Z Isabelle: [X Y ; X = Z; Y = Z ] = Z EXAMPLE: A RULE WITH NESTED IMPLICATION 27-B

80 λ Syntax: λx. F (F another meta level formula) in ASCII: %x. F λ 28

81 λ Syntax: λx. F (F another meta level formula) in ASCII: %x. F lambda abstraction used to for functions in object logics used to encode bound variables in object logics more about this in the next lecture λ 28-A

82 ENOUGH THEORY! GETTING STARTED WITH ISABELLE 29

83 SYSTEM ARCHITECTURE Isabelle generic, interactive theorem prover SYSTEM ARCHITECTURE 30

84 SYSTEM ARCHITECTURE Isabelle generic, interactive theorem prover Standard ML logic implemented as ADT SYSTEM ARCHITECTURE 30-A

85 SYSTEM ARCHITECTURE HOL, ZF object-logics Isabelle generic, interactive theorem prover Standard ML logic implemented as ADT SYSTEM ARCHITECTURE 30-B

86 SYSTEM ARCHITECTURE Proof General user interface HOL, ZF object-logics Isabelle generic, interactive theorem prover Standard ML logic implemented as ADT SYSTEM ARCHITECTURE 30-C

87 SYSTEM ARCHITECTURE Proof General user interface HOL, ZF object-logics Isabelle generic, interactive theorem prover Standard ML logic implemented as ADT User can access all layers! SYSTEM ARCHITECTURE 30-D

88 SYSTEM REQUIREMENTS Linux, MacOS X or Solaris Standard ML (PolyML fastest, SML/NJ supports more platforms) XEmacs or Emacs (for ProofGeneral) If you do not have Linux, MacOS X or Solaris, try IsaMorph: SYSTEM REQUIREMENTS 31

89 DOCUMENTATION Available from Learning Isabelle Tutorial on Isabelle/HOL (LNCS 2283) Tutorial on Isar Tutorial on Locales Reference Manuals Isabelle/Isar Reference Manual Isabelle Reference Manual Isabelle System Manual Reference Manuals for Object-Logics DOCUMENTATION 32

90 PROOFGENERAL User interface for Isabelle Runs under XEmacs or Emacs Isabelle process in background Interaction via Basic editing in XEmacs (with highlighting etc) Buttons (tool bar) Key bindings ProofGeneral Menu (lots of options, try them) PROOFGENERAL 33

91 X-SYMBOL CHEAT SHEET Input of funny symbols in ProofGeneral via menu ( X-Symbol ) via ASCII encoding (similar to L A T E X): \<and>, \<or>,... via abbreviation: /\, \/, -->,... via rotate: l C-. = λ (cycles through variations of letter) λ ➀ \<forall> \<exists> \<lambda> \<not> /\ \/ --> => ➁ ALL EX % & ➀ converted to X-Symbol ➁ stays ASCII X-SYMBOL CHEAT SHEET 34

92 DEMO 35

93 EXERCISES Download and install Isabelle from or Switch on X-Symbol in ProofGeneral Step through the demo file from the lecture web page Write an own theory file, look at some theorems, try find theorem EXERCISES 36

λ Slide 1 Content Exercises from last time λ-calculus COMP 4161 NICTA Advanced Course Advanced Topics in Software Verification

λ Slide 1 Content Exercises from last time λ-calculus COMP 4161 NICTA Advanced Course Advanced Topics in Software Verification Content COMP 4161 NICTA Advanced Course Advanced Topics in Software Verification Toby Murray, June Andronick, Gerwin Klein λ Slide 1 Intro & motivation, getting started [1] Foundations & Principles Lambda

More information

NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications

NICTA Advanced Course. Theorem Proving Principles, Techniques, Applications NICTA Advanced Course Theorem Proving Principles, Techniques, Applications λ 1 CONTENT Intro & motivation, getting started with Isabelle Foundations & Principles Lambda Calculus Higher Order Logic, natural

More information

Computer-Checked Meta-Logic

Computer-Checked Meta-Logic 1 PART Seminar 25 February 2015 Computer-Checked Meta-Logic Jørgen Villadsen jovi@dtu.dk Abstract Over the past decades there have been several impressive results in computer-checked meta-logic, including

More information

Interactive Theorem Provers

Interactive Theorem Provers Interactive Theorem Provers from the perspective of Isabelle/Isar Makarius Wenzel Univ. Paris-Sud, LRI July 2014 = Isabelle λ β Isar α 1 Introduction Notable ITP systems LISP based: ACL2 http://www.cs.utexas.edu/users/moore/acl2

More information

Gerwin Klein, June Andronick, Ramana Kumar S2/2016

Gerwin Klein, June Andronick, Ramana Kumar S2/2016 COMP4161: Advanced Topics in Software Verification {} Gerwin Klein, June Andronick, Ramana Kumar S2/2016 data61.csiro.au Content Intro & motivation, getting started [1] Foundations & Principles Lambda

More information

Isabelle/FOL Proof Assistant

Isabelle/FOL Proof Assistant Dec 2014 Isabelle/FOL Proof Assistant In a glance Mohamed Abouelwafa University Of Ottawa OCICS Supervised by Professor: Amy Felty Prepared by Mohamed Abouelwafa Mabou069@uottawa.ca 1 Abstract This tutorial

More information

Automated Reasoning Lecture 5: First-Order Logic

Automated Reasoning Lecture 5: First-Order Logic Automated Reasoning Lecture 5: First-Order Logic Jacques Fleuriot jdf@inf.ac.uk Recap Over the last three lectures, we have looked at: Propositional logic, semantics and proof systems Doing propositional

More information

Reasoning with Higher-Order Abstract Syntax and Contexts: A Comparison

Reasoning with Higher-Order Abstract Syntax and Contexts: A Comparison 1 Reasoning with Higher-Order Abstract Syntax and Contexts: A Comparison Amy Felty University of Ottawa July 13, 2010 Joint work with Brigitte Pientka, McGill University 2 Comparing Systems We focus on

More information

Propositional Logic. CS 3234: Logic and Formal Systems. Martin Henz and Aquinas Hobor. August 26, Generated on Tuesday 31 August, 2010, 16:54

Propositional Logic. CS 3234: Logic and Formal Systems. Martin Henz and Aquinas Hobor. August 26, Generated on Tuesday 31 August, 2010, 16:54 Propositional Logic CS 3234: Logic and Formal Systems Martin Henz and Aquinas Hobor August 26, 2010 Generated on Tuesday 31 August, 2010, 16:54 1 Motivation In traditional logic, terms represent sets,

More information

LCF + Logical Frameworks = Isabelle (25 Years Later)

LCF + Logical Frameworks = Isabelle (25 Years Later) LCF + Logical Frameworks = Isabelle (25 Years Later) Lawrence C. Paulson, Computer Laboratory, University of Cambridge 16 April 2012 Milner Symposium, Edinburgh 1979 Edinburgh LCF: From the Preface the

More information

Formal Verification of Mathematical Algorithms

Formal Verification of Mathematical Algorithms Formal Verification of Mathematical Algorithms 1 Formal Verification of Mathematical Algorithms John Harrison Intel Corporation The cost of bugs Formal verification Levels of verification HOL Light Formalizing

More information

An Introduction to Proof Assistants

An Introduction to Proof Assistants An Introduction to Proof Assistants Patrick Schnider Student Seminar in Combinatorics: Mathematical Software, ETH Zürich 1 Motivation The development of proof assistants was motivated by the use of computers

More information

Discrete Mathematics

Discrete Mathematics Discrete Mathematics Jeremy Siek Spring 2010 Jeremy Siek Discrete Mathematics 1 / 24 Outline of Lecture 3 1. Proofs and Isabelle 2. Proof Strategy, Forward and Backwards Reasoning 3. Making Mistakes Jeremy

More information

Classical First-Order Logic

Classical First-Order Logic Classical First-Order Logic Software Formal Verification Maria João Frade Departmento de Informática Universidade do Minho 2008/2009 Maria João Frade (DI-UM) First-Order Logic (Classical) MFES 2008/09

More information

The Formal Proof Susan Gillmor and Samantha Rabinowicz Project for MA341: Appreciation of Number Theory Boston University Summer Term

The Formal Proof Susan Gillmor and Samantha Rabinowicz Project for MA341: Appreciation of Number Theory Boston University Summer Term The Formal Proof Susan Gillmor and Samantha Rabinowicz Project for MA341: Appreciation of Number Theory Boston University Summer Term 1 2009 Instructor: Kalin Kostadinov The Formal Proof 2 A proof verifies

More information

Validating QBF Invalidity in HOL4

Validating QBF Invalidity in HOL4 Interactive Theorem Proving (ITP) 14 July, 2010 Quantified Boolean Formulae Quantified Boolean Formulae Motivation System Overview Related Work QBF = propositional logic + quantifiers over Boolean variables

More information

Learning Goals of CS245 Logic and Computation

Learning Goals of CS245 Logic and Computation Learning Goals of CS245 Logic and Computation Alice Gao April 27, 2018 Contents 1 Propositional Logic 2 2 Predicate Logic 4 3 Program Verification 6 4 Undecidability 7 1 1 Propositional Logic Introduction

More information

Recursion and Intro to Coq

Recursion and Intro to Coq L02-1 Recursion and Intro to Coq Armando Solar Lezama Computer Science and Artificial Intelligence Laboratory M.I.T. With content from Arvind and Adam Chlipala. Used with permission. September 21, 2015

More information

Last Time. Inference Rules

Last Time. Inference Rules Last Time When program S executes it switches to a different state We need to express assertions on the states of the program S before and after its execution We can do it using a Hoare triple written

More information

Code Generation for a Simple First-Order Prover

Code Generation for a Simple First-Order Prover Code Generation for a Simple First-Order Prover Jørgen Villadsen, Anders Schlichtkrull, and Andreas Halkjær From DTU Compute, Technical University of Denmark, 2800 Kongens Lyngby, Denmark Abstract. We

More information

Classical First-Order Logic

Classical First-Order Logic Classical First-Order Logic Software Formal Verification Maria João Frade Departmento de Informática Universidade do Minho 2009/2010 Maria João Frade (DI-UM) First-Order Logic (Classical) MFES 2009/10

More information

Write your own Theorem Prover

Write your own Theorem Prover Write your own Theorem Prover Phil Scott 27 October 2016 Phil Scott Write your own Theorem Prover 27 October 2016 1 / 31 Introduction We ll work through a toy LCF style theorem prover for classical propositional

More information

Overview, cont. Overview, cont. Logistics. Optional Reference #1. Optional Reference #2. Workload and Grading

Overview, cont. Overview, cont. Logistics. Optional Reference #1. Optional Reference #2. Workload and Grading Course staff CS389L: Automated Logical Reasoning Lecture 1: ntroduction and Review of Basics şıl Dillig nstructor: şil Dillig E-mail: isil@cs.utexas.edu Office hours: Thursday after class until 6:30 pm

More information

Typing λ-terms. Types. Typed λ-terms. Base Types. The Typing Relation. Advanced Formal Methods. Lecture 3: Simply Typed Lambda calculus

Typing λ-terms. Types. Typed λ-terms. Base Types. The Typing Relation. Advanced Formal Methods. Lecture 3: Simply Typed Lambda calculus Course 2D1453, 200607 Advanced Formal Methods Lecture 3: Simply Typed Lambda calculus Mads Dam KTH/CSC Some material from B. Pierce: TAPL + some from G. Klein, NICTA Typing λterms The uptyped λcalculus

More information

02 Propositional Logic

02 Propositional Logic SE 2F03 Fall 2005 02 Propositional Logic Instructor: W. M. Farmer Revised: 25 September 2005 1 What is Propositional Logic? Propositional logic is the study of the truth or falsehood of propositions or

More information

Lecture 5 : Proofs DRAFT

Lecture 5 : Proofs DRAFT CS/Math 240: Introduction to Discrete Mathematics 2/3/2011 Lecture 5 : Proofs Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT Up until now, we have been introducing mathematical notation

More information

Dynamic Semantics. Dynamic Semantics. Operational Semantics Axiomatic Semantics Denotational Semantic. Operational Semantics

Dynamic Semantics. Dynamic Semantics. Operational Semantics Axiomatic Semantics Denotational Semantic. Operational Semantics Dynamic Semantics Operational Semantics Denotational Semantic Dynamic Semantics Operational Semantics Operational Semantics Describe meaning by executing program on machine Machine can be actual or simulated

More information

Human-Readable Machine-Verifiable Proofs for Teaching Constructive Logic

Human-Readable Machine-Verifiable Proofs for Teaching Constructive Logic Human-Readable Machine-Verifiable Proofs for Teaching Constructive Logic Andreas Abel, Bor-Yuh Evan Chang, and Frank Pfenning Workshop on Proof Transformations, Proof Presentations and Complexity of Proofs

More information

Introduction to Isabelle/HOL

Introduction to Isabelle/HOL Introduction to Isabelle/HOL 1 Notes on Isabelle/HOL Notation In Isabelle/HOL: [ A 1 ;A 2 ; ;A n ]G can be read as if A 1 and A 2 and and A n then G 3 Note: -Px (P x) stands for P (x) (P(x)) -P(x, y) can

More information

Computational Logic and the Quest for Greater Automation

Computational Logic and the Quest for Greater Automation Computational Logic and the Quest for Greater Automation Lawrence C Paulson, Distinguished Affiliated Professor for Logic in Informatics Technische Universität München (and Computer Laboratory, University

More information

Program verification using Hoare Logic¹

Program verification using Hoare Logic¹ Program verification using Hoare Logic¹ Automated Reasoning - Guest Lecture Petros Papapanagiotou Part 2 of 2 ¹Contains material from Mike Gordon s slides: Previously on Hoare Logic A simple while language

More information

Logic for Computer Science - Week 4 Natural Deduction

Logic for Computer Science - Week 4 Natural Deduction Logic for Computer Science - Week 4 Natural Deduction 1 Introduction In the previous lecture we have discussed some important notions about the semantics of propositional logic. 1. the truth value of a

More information

The Reflection Theorem

The Reflection Theorem The Reflection Theorem Formalizing Meta-Theoretic Reasoning Lawrence C. Paulson Computer Laboratory Lecture Overview Motivation for the Reflection Theorem Proving the Theorem in Isabelle Applying the Reflection

More information

Proof assistants as a tool for thought

Proof assistants as a tool for thought Proof assistants as a tool for thought Katherine Ye @hypotext Tools for thought workshop, March 16 circa 1700 Disputants unable to agree would not waste much time in futile argument... Leibniz (Harrison)

More information

Beyond First-Order Logic

Beyond First-Order Logic Beyond First-Order Logic Software Formal Verification Maria João Frade Departmento de Informática Universidade do Minho 2008/2009 Maria João Frade (DI-UM) Beyond First-Order Logic MFES 2008/09 1 / 37 FOL

More information

Requirements Validation. Content. What the standards say (*) ?? Validation, Verification, Accreditation!! Correctness and completeness

Requirements Validation. Content. What the standards say (*) ?? Validation, Verification, Accreditation!! Correctness and completeness Requirements Validation Requirements Management Requirements Validation?? Validation, Verification, Accreditation!! Check if evrything is OK With respect to what? Mesurement associated with requirements

More information

Advanced Topics in LP and FP

Advanced Topics in LP and FP Lecture 1: Prolog and Summary of this lecture 1 Introduction to Prolog 2 3 Truth value evaluation 4 Prolog Logic programming language Introduction to Prolog Introduced in the 1970s Program = collection

More information

Lecture 13: Soundness, Completeness and Compactness

Lecture 13: Soundness, Completeness and Compactness Discrete Mathematics (II) Spring 2017 Lecture 13: Soundness, Completeness and Compactness Lecturer: Yi Li 1 Overview In this lecture, we will prvoe the soundness and completeness of tableau proof system,

More information

Type Systems. Lecture 9: Classical Logic. Neel Krishnaswami University of Cambridge

Type Systems. Lecture 9: Classical Logic. Neel Krishnaswami University of Cambridge Type Systems Lecture 9: Classical Logic Neel Krishnaswami University of Cambridge Where We Are We have seen the Curry Howard correspondence: Intuitionistic propositional logic Simply-typed lambda calculus

More information

Inductive Theorem Proving

Inductive Theorem Proving Introduction Inductive Proofs Automation Conclusion Automated Reasoning P.Papapanagiotou@sms.ed.ac.uk 11 October 2012 Introduction Inductive Proofs Automation Conclusion General Induction Theorem Proving

More information

07 Practical Application of The Axiomatic Method

07 Practical Application of The Axiomatic Method CAS 701 Fall 2002 07 Practical Application of The Axiomatic Method Instructor: W. M. Farmer Revised: 28 November 2002 1 What is the Axiomatic Method? 1. A mathematical model is expressed as a set of axioms

More information

Automated Proving in Geometry using Gröbner Bases in Isabelle/HOL

Automated Proving in Geometry using Gröbner Bases in Isabelle/HOL Automated Proving in Geometry using Gröbner Bases in Isabelle/HOL Danijela Petrović Faculty of Mathematics, University of Belgrade, Serbia Abstract. For several decades, algebraic method have been successfully

More information

Intel s Successes with Formal Methods

Intel s Successes with Formal Methods 0 Intel s Successes with Formal Methods John Harrison Intel Corporation Software, Science & Society World Forestry Center, Portland OR December 5, 2003 1 Bugs in computer systems Most modern computer systems

More information

Logic. Propositional Logic: Syntax. Wffs

Logic. Propositional Logic: Syntax. Wffs Logic Propositional Logic: Syntax Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about

More information

A Machine Checked Model of Idempotent MGU Axioms For a List of Equational Constraints

A Machine Checked Model of Idempotent MGU Axioms For a List of Equational Constraints A Machine Checked Model of Idempotent MGU Axioms For a List of Equational Constraints Sunil Kothari, James Caldwell Department of Computer Science, University of Wyoming, USA Machine checked proofs of

More information

Executing the formal semantics of the Accellera Property Specification Language

Executing the formal semantics of the Accellera Property Specification Language Executing the PSL semantics 1/17 Executing the formal semantics of the Accellera Property Specification Language joint work with Joe Hurd & Konrad Slind Standard practice: generate tools from formal syntax

More information

Logic. Propositional Logic: Syntax

Logic. Propositional Logic: Syntax Logic Propositional Logic: Syntax Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about

More information

Logical Structures in Natural Language: Propositional Logic II (Truth Tables and Reasoning

Logical Structures in Natural Language: Propositional Logic II (Truth Tables and Reasoning Logical Structures in Natural Language: Propositional Logic II (Truth Tables and Reasoning Raffaella Bernardi Università degli Studi di Trento e-mail: bernardi@disi.unitn.it Contents 1 What we have said

More information

The LCF Approach to Theorem Proving

The LCF Approach to Theorem Proving The LCF Approach to Theorem Proving 1 The LCF Approach to Theorem Proving John Harrison Intel Corporation Ideas and historical context Key ideas of LCF Equational logic example More about HOL Light Programming

More information

CSE 20. Final Review. CSE 20: Final Review

CSE 20. Final Review. CSE 20: Final Review CSE 20 Final Review Final Review Representation of integers in base b Logic Proof systems: Direct Proof Proof by contradiction Contraposetive Sets Theory Functions Induction Final Review Representation

More information

EDA045F: Program Analysis LECTURE 10: TYPES 1. Christoph Reichenbach

EDA045F: Program Analysis LECTURE 10: TYPES 1. Christoph Reichenbach EDA045F: Program Analysis LECTURE 10: TYPES 1 Christoph Reichenbach In the last lecture... Performance Counters Challenges in Dynamic Performance Analysis Taint Analysis Binary Instrumentation 2 / 44 Types

More information

Automated Reasoning Lecture 2: Propositional Logic and Natural Deduction

Automated Reasoning Lecture 2: Propositional Logic and Natural Deduction Automated Reasoning Lecture 2: Propositional Logic and Natural Deduction Jacques Fleuriot jdf@inf.ed.ac.uk Logic Puzzles 1. Tomorrow will be sunny or rainy. Tomorrow will not be sunny. What will the weather

More information

Proofs: A General How To II. Rules of Inference. Rules of Inference Modus Ponens. Rules of Inference Addition. Rules of Inference Conjunction

Proofs: A General How To II. Rules of Inference. Rules of Inference Modus Ponens. Rules of Inference Addition. Rules of Inference Conjunction Introduction I Proofs Computer Science & Engineering 235 Discrete Mathematics Christopher M. Bourke cbourke@cse.unl.edu A proof is a proof. What kind of a proof? It s a proof. A proof is a proof. And when

More information

Logic: Bottom-up & Top-down proof procedures

Logic: Bottom-up & Top-down proof procedures Logic: Bottom-up & Top-down proof procedures Alan Mackworth UBC CS 322 Logic 3 March 4, 2013 P & M Textbook 5.2 Lecture Overview Recap: Soundness, Completeness, Bottom-up proof procedure Bottom-up Proof

More information

02 The Axiomatic Method

02 The Axiomatic Method CAS 734 Winter 2005 02 The Axiomatic Method Instructor: W. M. Farmer Revised: 11 January 2005 1 What is Mathematics? The essence of mathematics is a process consisting of three intertwined activities:

More information

CITS2211 Discrete Structures Proofs

CITS2211 Discrete Structures Proofs CITS2211 Discrete Structures Proofs Unit coordinator: Rachel Cardell-Oliver August 13, 2017 Highlights 1 Arguments vs Proofs. 2 Proof strategies 3 Famous proofs Reading Chapter 1: What is a proof? Mathematics

More information

Program-ing in Coq. Matthieu Sozeau under the direction of Christine Paulin-Mohring

Program-ing in Coq. Matthieu Sozeau under the direction of Christine Paulin-Mohring Program-ing in Coq Matthieu Sozeau under the direction of Christine Paulin-Mohring LRI, Univ. Paris-Sud - Démons Team & INRIA Saclay - ProVal Project Foundations of Programming seminar February 15th 2008

More information

Sec$on Summary. Mathematical Proofs Forms of Theorems Trivial & Vacuous Proofs Direct Proofs Indirect Proofs

Sec$on Summary. Mathematical Proofs Forms of Theorems Trivial & Vacuous Proofs Direct Proofs Indirect Proofs Section 1.7 Sec$on Summary Mathematical Proofs Forms of Theorems Trivial & Vacuous Proofs Direct Proofs Indirect Proofs Proof of the Contrapositive Proof by Contradiction 2 Proofs of Mathema$cal Statements

More information

Formalization and Automation of Euclidean Geometry

Formalization and Automation of Euclidean Geometry Formalization and Automation of Euclidean Geometry Vesna Pavlović, Sana Stojanović Faculty of Mathematics, Belgrade Spring School Geometry and Visualization, Belgrade, Serbia, April 22, 2008. Our Plan

More information

Propositional Logic: Syntax

Propositional Logic: Syntax Logic Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about time (and programs) epistemic

More information

Propositional logic (revision) & semantic entailment. p. 1/34

Propositional logic (revision) & semantic entailment. p. 1/34 Propositional logic (revision) & semantic entailment p. 1/34 Reading The background reading for propositional logic is Chapter 1 of Huth/Ryan. (This will cover approximately the first three lectures.)

More information

The Importance of Being Formal. Martin Henz. February 5, Propositional Logic

The Importance of Being Formal. Martin Henz. February 5, Propositional Logic The Importance of Being Formal Martin Henz February 5, 2014 Propositional Logic 1 Motivation In traditional logic, terms represent sets, and therefore, propositions are limited to stating facts on sets

More information

26. Januar Introduction to Computational Semantics

26. Januar Introduction to Computational Semantics 1 Lehrstuhl für Künstliche Intelligenz Institut für Informatik Friedrich-Alexander-Universität Erlangen-Nürnberg 26. Januar 2006 1 Slides are mainly due to J. Bos and P. Blackburn course on An Introduction

More information

Applied Logic. Lecture 1 - Propositional logic. Marcin Szczuka. Institute of Informatics, The University of Warsaw

Applied Logic. Lecture 1 - Propositional logic. Marcin Szczuka. Institute of Informatics, The University of Warsaw Applied Logic Lecture 1 - Propositional logic Marcin Szczuka Institute of Informatics, The University of Warsaw Monographic lecture, Spring semester 2017/2018 Marcin Szczuka (MIMUW) Applied Logic 2018

More information

Implementing Proof Systems for the Intuitionistic Propositional Logic

Implementing Proof Systems for the Intuitionistic Propositional Logic Implementing Proof Systems for the Intuitionistic Propositional Logic Veronica Zammit Supervisor: Dr. Adrian Francalanza Faculty of ICT University of Malta May 27, 2011 Submitted in partial fulfillment

More information

cis32-ai lecture # 18 mon-3-apr-2006

cis32-ai lecture # 18 mon-3-apr-2006 cis32-ai lecture # 18 mon-3-apr-2006 today s topics: propositional logic cis32-spring2006-sklar-lec18 1 Introduction Weak (search-based) problem-solving does not scale to real problems. To succeed, problem

More information

COMP219: Artificial Intelligence. Lecture 19: Logic for KR

COMP219: Artificial Intelligence. Lecture 19: Logic for KR COMP219: Artificial Intelligence Lecture 19: Logic for KR 1 Overview Last time Expert Systems and Ontologies Today Logic as a knowledge representation scheme Propositional Logic Syntax Semantics Proof

More information

Logic As Algebra COMP1600 / COMP6260. Dirk Pattinson Australian National University. Semester 2, 2017

Logic As Algebra COMP1600 / COMP6260. Dirk Pattinson Australian National University. Semester 2, 2017 Logic As Algebra COMP1600 / COMP6260 Dirk Pattinson Australian National University Semester 2, 2017 Recap: And, Or, and Not x AND y x y x y 0 0 0 0 1 0 1 0 0 1 1 1 x OR y x y x y 0 0 0 0 1 1 1 0 1 1 1

More information

Theoretical Computer Science

Theoretical Computer Science Theoretical Computer Science Zdeněk Sawa Department of Computer Science, FEI, Technical University of Ostrava 17. listopadu 15, Ostrava-Poruba 708 33 Czech republic September 22, 2017 Z. Sawa (TU Ostrava)

More information

COMP6463: λ-calculus

COMP6463: λ-calculus COMP6463: λ-calculus 1. Basics Michael Norrish Michael.Norrish@nicta.com.au Canberra Research Lab., NICTA Semester 2, 2015 Outline Introduction Lambda Calculus Terms Alpha Equivalence Substitution Dynamics

More information

CSC236 Week 3. Larry Zhang

CSC236 Week 3. Larry Zhang CSC236 Week 3 Larry Zhang 1 Announcements Problem Set 1 due this Friday Make sure to read Submission Instructions on the course web page. Search for Teammates on Piazza Educational memes: http://www.cs.toronto.edu/~ylzhang/csc236/memes.html

More information

Mathematical Logic. Introduction to Reasoning and Automated Reasoning. Hilbert-style Propositional Reasoning. Chiara Ghidini. FBK-IRST, Trento, Italy

Mathematical Logic. Introduction to Reasoning and Automated Reasoning. Hilbert-style Propositional Reasoning. Chiara Ghidini. FBK-IRST, Trento, Italy Introduction to Reasoning and Automated Reasoning. Hilbert-style Propositional Reasoning. FBK-IRST, Trento, Italy Deciding logical consequence Problem Is there an algorithm to determine whether a formula

More information

Alan Bundy. Automated Reasoning LTL Model Checking

Alan Bundy. Automated Reasoning LTL Model Checking Automated Reasoning LTL Model Checking Alan Bundy Lecture 9, page 1 Introduction So far we have looked at theorem proving Powerful, especially where good sets of rewrite rules or decision procedures have

More information

3 Propositional Logic

3 Propositional Logic 3 Propositional Logic 3.1 Syntax 3.2 Semantics 3.3 Equivalence and Normal Forms 3.4 Proof Procedures 3.5 Properties Propositional Logic (25th October 2007) 1 3.1 Syntax Definition 3.0 An alphabet Σ consists

More information

Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction

Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction Writing proofs for MATH 61CM, 61DM Week 1: basic logic, proof by contradiction, proof by induction written by Sarah Peluse, revised by Evangelie Zachos and Lisa Sauermann September 27, 2016 1 Introduction

More information

A Termination Checker for Isabelle Hoare Logic

A Termination Checker for Isabelle Hoare Logic A Termination Checker for Isabelle Hoare Logic Jia Meng 1, Lawrence C. Paulson 2, and Gerwin Klein 3 1 National ICT Australia jia.meng@nicta.com.au 2 Computer Laboratory, University of Cambridge lp15@cam.ac.uk

More information

The Curry-Howard Isomorphism

The Curry-Howard Isomorphism The Curry-Howard Isomorphism Software Formal Verification Maria João Frade Departmento de Informática Universidade do Minho 2008/2009 Maria João Frade (DI-UM) The Curry-Howard Isomorphism MFES 2008/09

More information

Přednáška 12. Důkazové kalkuly Kalkul Hilbertova typu. 11/29/2006 Hilbertův kalkul 1

Přednáška 12. Důkazové kalkuly Kalkul Hilbertova typu. 11/29/2006 Hilbertův kalkul 1 Přednáška 12 Důkazové kalkuly Kalkul Hilbertova typu 11/29/2006 Hilbertův kalkul 1 Formal systems, Proof calculi A proof calculus (of a theory) is given by: A. a language B. a set of axioms C. a set of

More information

Interpretation of Locales in Isabelle: Theories and Proof Contexts

Interpretation of Locales in Isabelle: Theories and Proof Contexts Interpretation of Locales in Isabelle: Theories and Proof Contexts Clemens Ballarin Fakultät für Informatik Technische Universität München 85748 Garching, Germany http://www4.in.tum.de/ ballarin Abstract.

More information

Examples: P: it is not the case that P. P Q: P or Q P Q: P implies Q (if P then Q) Typical formula:

Examples: P: it is not the case that P. P Q: P or Q P Q: P implies Q (if P then Q) Typical formula: Logic: The Big Picture Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about time (and

More information

Introduction. Pedro Cabalar. Department of Computer Science University of Corunna, SPAIN 2013/2014

Introduction. Pedro Cabalar. Department of Computer Science University of Corunna, SPAIN 2013/2014 Introduction Pedro Cabalar Department of Computer Science University of Corunna, SPAIN cabalar@udc.es 2013/2014 P. Cabalar ( Department Introduction of Computer Science University of Corunna, SPAIN2013/2014

More information

Analysing the microrna-17-92/myc/e2f/rb Compound Toggle Switch by Theorem Proving

Analysing the microrna-17-92/myc/e2f/rb Compound Toggle Switch by Theorem Proving Analysing the microrna-17-92/myc/e2f/rb Compound Toggle Switch by Theorem Proving Giampaolo Bella and Pietro Liò @ Catania and Cambridge Under the auspices of British Council's grant ``Computer-assisted

More information

Manual of Logical Style (fresh version 2018)

Manual of Logical Style (fresh version 2018) Manual of Logical Style (fresh version 2018) Randall Holmes 9/5/2018 1 Introduction This is a fresh version of a document I have been working on with my classes at various levels for years. The idea that

More information

Logic for Computer Science Handout Week 8 DERIVED RULE MODUS TOLLENS DERIVED RULE RAA DERIVED RULE TND

Logic for Computer Science Handout Week 8 DERIVED RULE MODUS TOLLENS DERIVED RULE RAA DERIVED RULE TND Logic for Computer Science Handout Week 8 DERIVED RULE MODUS TOLLENS We have last week completed the introduction of a calculus, which is sound and complete. That is, we can syntactically establish the

More information

Propositional Definite Clause Logic: Syntax, Semantics and Bottom-up Proofs

Propositional Definite Clause Logic: Syntax, Semantics and Bottom-up Proofs Propositional Definite Clause Logic: Syntax, Semantics and Bottom-up Proofs Computer Science cpsc322, Lecture 20 (Textbook Chpt 5.1.2-5.2.2 ) June, 6, 2017 CPSC 322, Lecture 20 Slide 1 Lecture Overview

More information

Agent-Based HOL Reasoning 1

Agent-Based HOL Reasoning 1 Agent-Based HOL Reasoning 1 Alexander Steen Max Wisniewski Christoph Benzmüller Freie Universität Berlin 5th International Congress on Mathematical Software (ICMS 2016) 1 This work has been supported by

More information

The following techniques for methods of proofs are discussed in our text: - Vacuous proof - Trivial proof

The following techniques for methods of proofs are discussed in our text: - Vacuous proof - Trivial proof Ch. 1.6 Introduction to Proofs The following techniques for methods of proofs are discussed in our text - Vacuous proof - Trivial proof - Direct proof - Indirect proof (our book calls this by contraposition)

More information

Topics in Model-Based Reasoning

Topics in Model-Based Reasoning Towards Integration of Proving and Solving Dipartimento di Informatica Università degli Studi di Verona Verona, Italy March, 2014 Automated reasoning Artificial Intelligence Automated Reasoning Computational

More information

Introducing Proof 1. hsn.uk.net. Contents

Introducing Proof 1. hsn.uk.net. Contents Contents 1 1 Introduction 1 What is proof? 1 Statements, Definitions and Euler Diagrams 1 Statements 1 Definitions Our first proof Euler diagrams 4 3 Logical Connectives 5 Negation 6 Conjunction 7 Disjunction

More information

Propositional Logic. Jason Filippou UMCP. ason Filippou UMCP) Propositional Logic / 38

Propositional Logic. Jason Filippou UMCP. ason Filippou UMCP) Propositional Logic / 38 Propositional Logic Jason Filippou CMSC250 @ UMCP 05-31-2016 ason Filippou (CMSC250 @ UMCP) Propositional Logic 05-31-2016 1 / 38 Outline 1 Syntax 2 Semantics Truth Tables Simplifying expressions 3 Inference

More information

An Informal introduction to Formal Verification

An Informal introduction to Formal Verification An Informal introduction to Formal Verification Osman Hasan National University of Sciences and Technology (NUST), Islamabad, Pakistan O. Hasan Formal Verification 2 Agenda q Formal Verification Methods,

More information

MCS-236: Graph Theory Handout #A4 San Skulrattanakulchai Gustavus Adolphus College Sep 15, Methods of Proof

MCS-236: Graph Theory Handout #A4 San Skulrattanakulchai Gustavus Adolphus College Sep 15, Methods of Proof MCS-36: Graph Theory Handout #A4 San Skulrattanakulchai Gustavus Adolphus College Sep 15, 010 Methods of Proof Consider a set of mathematical objects having a certain number of operations and relations

More information

Classical Propositional Logic

Classical Propositional Logic The Language of A Henkin-style Proof for Natural Deduction January 16, 2013 The Language of A Henkin-style Proof for Natural Deduction Logic Logic is the science of inference. Given a body of information,

More information

7. Propositional Logic. Wolfram Burgard and Bernhard Nebel

7. Propositional Logic. Wolfram Burgard and Bernhard Nebel Foundations of AI 7. Propositional Logic Rational Thinking, Logic, Resolution Wolfram Burgard and Bernhard Nebel Contents Agents that think rationally The wumpus world Propositional logic: syntax and semantics

More information

Equalities and Uninterpreted Functions. Chapter 3. Decision Procedures. An Algorithmic Point of View. Revision 1.0

Equalities and Uninterpreted Functions. Chapter 3. Decision Procedures. An Algorithmic Point of View. Revision 1.0 Equalities and Uninterpreted Functions Chapter 3 Decision Procedures An Algorithmic Point of View D.Kroening O.Strichman Revision 1.0 Outline Decision Procedures Equalities and Uninterpreted Functions

More information

A Brief Introduction to Proofs

A Brief Introduction to Proofs A Brief Introduction to Proofs William J. Turner October, 010 1 Introduction Proofs are perhaps the very heart of mathematics. Unlike the other sciences, mathematics adds a final step to the familiar scientific

More information

Nunchaku: Flexible Model Finding for Higher-Order Logic

Nunchaku: Flexible Model Finding for Higher-Order Logic Nunchaku: Flexible Model Finding for Higher-Order Logic Simon Cruanes, Jasmin Blanchette, Andrew Reynolds Veridis, Inria Nancy https://cedeela.fr/~simon/ April 7th, 2016 1 / 21 Summary Introduction Nunchaku

More information

Classical Program Logics: Hoare Logic, Weakest Liberal Preconditions

Classical Program Logics: Hoare Logic, Weakest Liberal Preconditions Chapter 1 Classical Program Logics: Hoare Logic, Weakest Liberal Preconditions 1.1 The IMP Language IMP is a programming language with an extensible syntax that was developed in the late 1960s. We will

More information

September 13, Cemela Summer School. Mathematics as language. Fact or Metaphor? John T. Baldwin. Framing the issues. structures and languages

September 13, Cemela Summer School. Mathematics as language. Fact or Metaphor? John T. Baldwin. Framing the issues. structures and languages September 13, 2008 A Language of / for mathematics..., I interpret that mathematics is a language in a particular way, namely as a metaphor. David Pimm, Speaking Mathematically Alternatively Scientists,

More information

Introduction to Logic and Axiomatic Set Theory

Introduction to Logic and Axiomatic Set Theory Introduction to Logic and Axiomatic Set Theory 1 Introduction In mathematics, we seek absolute rigor in our arguments, and a solid foundation for all of the structures we consider. Here, we will see some

More information