-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: zeramorphic <zeramorphic@proton.me>
- Loading branch information
1 parent
c86abcc
commit 0426cea
Showing
6 changed files
with
188 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import ConNF.Counting.Recode | ||
import ConNF.Counting.Spec | ||
|
||
/-! | ||
# Counting raised singletons | ||
-/ | ||
|
||
open Cardinal Function MulAction Set Quiver | ||
|
||
open scoped Cardinal | ||
|
||
universe u | ||
|
||
namespace ConNF | ||
|
||
variable [Params.{u}] [Level] [CountingAssumptions] {β γ : Λ} [LeLevel β] [LeLevel γ] | ||
(hγ : (γ : TypeIndex) < β) | ||
|
||
noncomputable def RaisedSingleton.code (S : Support β) (r : RaisedSingleton hγ S) : | ||
CodingFunction γ := | ||
CodingFunction.code _ _ (support_supports r.prop.choose) | ||
|
||
theorem RaisedSingleton.code_injective (S : Support β) : | ||
Function.Injective (RaisedSingleton.code hγ S) := by | ||
rintro r₁ r₂ h | ||
refine Subtype.coe_injective ?_ | ||
dsimp only | ||
rw [r₁.prop.choose_spec, r₂.prop.choose_spec, raiseSingleton, raiseSingleton] | ||
rw [code, code] at h | ||
rw [CodingFunction.code_eq_code_iff] at h ⊢ | ||
obtain ⟨ρ, hρ₁, hρ₂⟩ := h | ||
sorry | ||
|
||
end ConNF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters