Small types #
A type is w
-small if there exists an equivalence to some S : Type w
.
We provide a noncomputable model Shrink α : Type w
, and equivShrink α : α ≃ Shrink α
.
A subsingleton type is w
-small for any w
.
If α ≃ β
, then Small.{w} α ↔ Small.{w} β
.
See Mathlib.Logic.Small.Basic
for further instances and theorems.
If a type is Small.{w}
, then there exists an equivalence with some S : Type w
An arbitrarily chosen model in Type w
for a w
-small type.
Equations
Instances For
The noncomputable equivalence between a w
-small type and a model.
Equations
- equivShrink α = ⋯.some
Instances For
theorem
Shrink.ext_iff
{α : Type v}
[Small.{w, v} α]
{x : Shrink.{w, v} α}
{y : Shrink.{w, v} α}
:
x = y ↔ (equivShrink α).symm x = (equivShrink α).symm y
theorem
Shrink.ext
{α : Type v}
[Small.{w, v} α]
{x : Shrink.{w, v} α}
{y : Shrink.{w, v} α}
(w : (equivShrink α).symm x = (equivShrink α).symm y)
:
x = y
noncomputable def
Shrink.rec
{α : Type u_1}
[Small.{w, u_1} α]
{F : Shrink.{w, u_1} α → Sort v}
(h : (X : α) → F ((equivShrink α) X))
(X : Shrink.{w, u_1} α)
:
F X
Equations
- Shrink.rec h X = ⋯ ▸ h ((equivShrink α).symm X)
Instances For
Equations
- ⋯ = ⋯
instance
small_sigma
{α : Type u_2}
(β : α → Type u_1)
[Small.{w, u_2} α]
[∀ (a : α), Small.{w, u_1} (β a)]
:
Small.{w, max u_1 u_2} ((a : α) × β a)
Equations
- ⋯ = ⋯