| name | list-reverse-def |
| version | 1.9 |
| description | list-reverse-def |
| author | Joe Hurd <joe@gilith.com> |
| license | HOLLight |
| provenance | HOL Light theory extracted on 2011-07-14 |
| show | Data.Bool |
⊦ Data.List.reverse Data.List.[] = Data.List.[] ∧
∀x l.
Data.List.reverse (Data.List.:: x l) =
Data.List.@ (Data.List.reverse l) (Data.List.:: x Data.List.[])
⊦ T
⊦ (∃) = λP. P ((select) P)
⊦ (∀) = λP. P = λx. T
⊦ (⇒) = λp q. p ∧ q ⇔ p
⊦ (∧) = λp q. (λf. f p q) = λf. f T T
⊦ ∀NIL' CONS'.
∃fn.
fn Data.List.[] = NIL' ∧
∀a0 a1. fn (Data.List.:: a0 a1) = CONS' a0 a1 (fn a1)