Package list-take-drop-def: Definition of the list take and drop functions

Information

namelist-take-drop-def
version1.26
descriptionDefinition of the list take and drop functions
authorJoe Hurd <joe@gilith.com>
licenseMIT
provenanceHOL Light theory extracted on 2011-11-27
requiresbool
natural
list-dest
showData.Bool
Data.List
Number.Natural

Files

Defined Constants

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

Input Constants

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