Package list-take-drop-def: Definition of the list take and drop functions
Information
name | list-take-drop-def |
version | 1.26 |
description | Definition of the list take and drop functions |
author | Joe Hurd <joe@gilith.com> |
license | MIT |
provenance | HOL Light theory extracted on 2011-11-27 |
requires | bool natural list-dest |
show | Data.Bool Data.List Number.Natural |
Files
- Package tarball list-take-drop-def-1.26.tgz
- Theory file list-take-drop-def.thy (included in the package tarball)
Defined Constants
- Data
- List
- drop
- take
- List
Theorems
⊦ ∀l. drop 0 l = l
⊦ ∀l. take 0 l = []
⊦ ∀n h t. n ≤ length t ⇒ drop (suc n) (h :: t) = drop n t
⊦ ∀n h t. n ≤ length t ⇒ take (suc n) (h :: t) = h :: take n t
Input Type Operators
- →
- bool
- Data
- List
- list
- List
- Number
- Natural
- natural
- Natural
Input Constants
- =
- select
- Data
- Bool
- ∀
- ∧
- ⇒
- ∃
- ∃!
- T
- List
- ::
- []
- head
- length
- tail
- Bool
- Number
- Natural
- ≤
- suc
- zero
- Natural
Assumptions
⊦ T
⊦ (∃) = λP. P ((select) P)
⊦ ∀t. (∀x. t) ⇔ t
⊦ (∀) = λp. p = λx. T
⊦ ∀t. t ⇒ T ⇔ T
⊦ (⇒) = λp q. p ∧ q ⇔ p
⊦ ∀h t. head (h :: t) = h
⊦ ∀h t. tail (h :: t) = t
⊦ (∧) = λp q. (λf. f p q) = λf. f T T
⊦ (∃) = λP. ∀q. (∀x. P x ⇒ q) ⇒ q
⊦ (∃!) = λP. (∃) P ∧ ∀x y. P x ∧ P y ⇒ x = y
⊦ ∀e f. ∃!fn. fn 0 = e ∧ ∀n. fn (suc n) = f (fn n) n