Package group-mult-add-def: Definition of group multiplication by repeated addition
Information
| name | group-mult-add-def |
| version | 1.12 |
| description | Definition of group multiplication by repeated addition |
| author | Joe Leslie-Hurd <joe@gilith.com> |
| license | MIT |
| provenance | HOL Light theory extracted on 2012-12-02 |
| requires | bool group-witness list |
| show | Algebra.Group Data.Bool Data.List |
Files
- Package tarball group-mult-add-def-1.12.tgz
- Theory source file group-mult-add-def.thy (included in the package tarball)
Defined Constant
- Algebra
- Group
- multAdd
- Group
Theorems
⊦ ∀z x. multAdd z x [] = z
⊦ ∀z x h t.
multAdd z x (h :: t) = multAdd (if h then z + x else z) (x + x) t
External Type Operators
- →
- bool
- Algebra
- Group
- group
- Group
- Data
- List
- list
- List
External Constants
- =
- select
- Algebra
- Group
- +
- Group
- Data
- Bool
- ∀
- ∧
- ⇒
- ∃
- cond
- ⊤
- List
- ::
- []
- Bool
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)
⊦ ∀b f. ∃fn. fn [] = b ∧ ∀h t. fn (h :: t) = f h t (fn t)