Package function-thm: Properties of function operators and combinators
Information
name | function-thm |
version | 1.45 |
description | Properties of function operators and combinators |
author | Joe Leslie-Hurd <joe@gilith.com> |
license | HOLLight |
provenance | HOL Light theory extracted on 2014-01-13 |
requires | bool function-def |
show | Data.Bool Function |
Files
- Package tarball function-thm-1.45.tgz
- Theory source file function-thm.thy (included in the package tarball)
Theorems
⊦ ∀x. id x = x
⊦ ∀x. S K x = id
⊦ ∀f. f ∘ id = f
⊦ ∀f. id ∘ f = f
⊦ ∀f. C (C f) = f
⊦ ∀x y. K x y = x
⊦ ∀f x. W f x = f x x
⊦ ∀f g x. (f ∘ g) x = f (g x)
⊦ ∀f x y. C f x y = f y x
⊦ ∀f g x. S f g x = f x (g x)
⊦ ∀f g h. f ∘ (g ∘ h) = f ∘ g ∘ h
⊦ ∀f g h. f ∘ g ∘ h = f ∘ (g ∘ h)
⊦ ∀f g. (∀x. ∃y. g y = f x) ⇔ ∃h. f = g ∘ h
⊦ ∀f. (∀y. ∃x. f x = y) ⇔ ∀p. (∀x. p (f x)) ⇔ ∀y. p y
⊦ ∀f. (∀y. ∃x. f x = y) ⇔ ∀p. (∃x. p (f x)) ⇔ ∃y. p y
⊦ ∀f g. (∀x y. g x = g y ⇒ f x = f y) ⇔ ∃h. f = h ∘ g
⊦ ∀p f g. (∀x. p x ⇒ ∃y. g y = f x) ⇔ ∃h. ∀x. p x ⇒ f x = g (h x)
⊦ ∀p f g.
(∀x y. p x ∧ p y ∧ g x = g y ⇒ f x = f y) ⇔ ∃h. ∀x. p x ⇒ f x = h (g x)
External Type Operators
- →
- bool
External Constants
- =
- select
- Data
- Bool
- ∀
- ∧
- ⇒
- ∃
- ∨
- ¬
- ⊥
- ⊤
- Bool
- Function
- id
- ∘
- C
- K
- S
- W
Assumptions
⊦ ⊤
⊦ id = λx. x
⊦ K = λx y. x
⊦ ¬⊥ ⇔ ⊤
⊦ ¬⊤ ⇔ ⊥
⊦ ∀t. t ⇒ t
⊦ (∃) = λp. p ((select) p)
⊦ ∀t. (∀x. t) ⇔ t
⊦ (∀) = λp. p = λx. ⊤
⊦ W = λf x. f x x
⊦ ∀t. ¬¬t ⇔ t
⊦ ∀t. (⊤ ⇔ t) ⇔ t
⊦ ∀t. (t ⇔ ⊤) ⇔ t
⊦ ∀t. ⊤ ∧ t ⇔ t
⊦ ∀t. ⊤ ⇒ t ⇔ t
⊦ (∘) = λf g x. f (g x)
⊦ C = λf x y. f y x
⊦ ∀t. (⊥ ⇔ t) ⇔ ¬t
⊦ ∀t. (t ⇔ ⊥) ⇔ ¬t
⊦ S = λf g x. f x (g x)
⊦ (⇒) = λp q. p ∧ q ⇔ p
⊦ ∀t. (t ⇔ ⊤) ∨ (t ⇔ ⊥)
⊦ ∀f y. (let x ← y in f x) = f y
⊦ ∀x y. x = y ⇔ y = x
⊦ ∀x y. x = y ⇒ y = x
⊦ (∧) = λp q. (λf. f p q) = λf. f ⊤ ⊤
⊦ ∀p. ¬(∀x. p x) ⇔ ∃x. ¬p x
⊦ ∀p. ¬(∃x. p x) ⇔ ∀x. ¬p x
⊦ (∃) = λp. ∀q. (∀x. p x ⇒ q) ⇒ q
⊦ ∀f g. (∀x. f x = g x) ⇔ f = g
⊦ (∨) = λp q. ∀r. (p ⇒ r) ⇒ (q ⇒ r) ⇒ r
⊦ ∀p q. p ⇒ (∃x. q x) ⇔ ∃x. p ⇒ q x
⊦ ∀r. (∀x. ∃y. r x y) ⇔ ∃f. ∀x. r x (f x)