Package list-replicate-def: Definition of the list replicate function
Information
name | list-replicate-def |
version | 1.28 |
description | Definition of the list replicate function |
author | Joe Hurd <joe@gilith.com> |
license | HOLLight |
provenance | HOL Light theory extracted on 2012-01-28 |
requires | bool natural |
show | Data.Bool Data.List Number.Natural |
Files
- Package tarball list-replicate-def-1.28.tgz
- Theory file list-replicate-def.thy (included in the package tarball)
Defined Constant
- Data
- List
- replicate
- List
Theorems
⊦ ∀x. replicate 0 x = []
⊦ ∀x n. replicate (suc n) x = x :: replicate n x
Input Type Operators
- →
- bool
- Data
- List
- list
- List
- Number
- Natural
- natural
- Natural
Input Constants
- =
- select
- Data
- Bool
- ∀
- ∧
- ⇒
- ∃
- ∃!
- T
- List
- ::
- []
- Bool
- Number
- Natural
- suc
- zero
- Natural
Assumptions
⊦ T
⊦ (∃) = λp. p ((select) p)
⊦ (∀) = λp. p = λx. T
⊦ (⇒) = λp q. p ∧ q ⇔ p
⊦ (∧) = λp q. (λf. f p q) = λf. f T T
⊦ (∃) = λ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