d998bf9300
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
18 lines
No EOL
366 B
Text
18 lines
No EOL
366 B
Text
import standard bool
|
|
using bool
|
|
|
|
namespace set
|
|
|
|
definition set (T : Type) := T → bool
|
|
definition mem {T : Type} (a : T) (s : set T) := s a = '1
|
|
infix `∈`:50 := mem
|
|
|
|
section
|
|
parameter {T : Type}
|
|
|
|
definition empty : set T := λx, '0
|
|
notation `∅` := empty
|
|
|
|
theorem mem_empty (x : T) : ¬ (x ∈ ∅)
|
|
:= not_intro (λH : x ∈ ∅, absurd H b0_ne_b1)
|
|
end |