Package natural-mult-def: Definition of natural number multiplication
Information
name | natural-mult-def |
version | 1.16 |
description | Definition of natural number multiplication |
author | Joe Hurd <joe@gilith.com> |
license | HOLLight |
provenance | HOL Light theory extracted on 2012-06-08 |
requires | bool natural-thm |
show | Data.Bool Number.Natural |
Files
- Package tarball natural-mult-def-1.16.tgz
- Theory file natural-mult-def.thy (included in the package tarball)
Defined Constant
- Number
- Natural
- *
- Natural
Theorems
⊦ ∀n. 0 * n = 0
⊦ ∀m n. suc m * n = m * n + n
Input Type Operators
- →
- bool
- Number
- Natural
- natural
- Natural
Input Constants
- =
- select
- Data
- Bool
- ∀
- ∧
- ⇒
- ∃
- ∃!
- ⊤
- Bool
- Number
- Natural
- +
- suc
- zero
- Natural
Assumptions
⊦ ⊤
⊦ (∃) = λp. p ((select) p)
⊦ (∀) = λp. p = λx. ⊤
⊦ (⇒) = λp q. p ∧ q ⇔ p
⊦ (∧) = λp q. (λf. f p q) = λf. f ⊤ ⊤
⊦ (∃) = λp. ∀q. (∀x. p x ⇒ q) ⇒ q
⊦ ∀p. (∀x. ∃y. p x y) ⇔ ∃y. ∀x. p x (y x)
⊦ (∃!) = λp. (∃) p ∧ ∀x y. p x ∧ p y ⇒ x = y
⊦ ∀e f. ∃!fn. fn 0 = e ∧ ∀n. fn (suc n) = f (fn n) n