Files
agdaproofs/Setoids/Cardinality/Infinite/Definition.agda
2020-04-05 11:09:12 +01:00

19 lines
706 B
Agda
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{-# OPTIONS --safe --warning=error --without-K #-}
open import Agda.Primitive using (Level; lzero; lsuc; _⊔_)
open import LogicalFormulae
open import Functions
open import Numbers.Naturals.Definition
open import Sets.FinSet.Definition
open import Setoids.Setoids
module Setoids.Cardinality.Infinite.Definition where
InfiniteSetoid : {a b : _} {A : Set a} (S : Setoid {a} {b} A) Set (a b)
InfiniteSetoid {A = A} S = (n : ) (f : FinSet n A) (SetoidBijection (reflSetoid (FinSet n)) S f) False
record DedekindInfiniteSetoid {a b : _} {A : Set a} (S : Setoid {a} {b} A) : Set (a b) where
field
inj : A
isInjection : SetoidInjection (reflSetoid ) S inj