cbc81ea6c5
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
20 lines
No EOL
367 B
Text
20 lines
No EOL
367 B
Text
import logic
|
|
using bool
|
|
|
|
namespace set
|
|
|
|
definition set (T : Type) := T → bool
|
|
definition mem {T : Type} (a : T) (s : set T) := s a = tt
|
|
infix `∈`:50 := mem
|
|
|
|
section
|
|
parameter {T : Type}
|
|
|
|
definition empty : set T := λx, ff
|
|
notation `∅` := empty
|
|
|
|
theorem mem_empty (x : T) : ¬ (x ∈ ∅)
|
|
:= not_intro (λH : x ∈ ∅, absurd H ff_ne_tt)
|
|
end
|
|
|
|
end set |