Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(AlgebraicTopology/SimplexCategory/SimplicialObject): definitions of simplicial objects by generators and relation #21748

Open
wants to merge 38 commits into
base: master
Choose a base branch
from

Conversation

robin-carlier
Copy link
Collaborator

We leverage the equivalence between SimplexCategory and SimplexCategoryGenRel to give new constructors for (co)simplicial objects, as well as constructors for natural transformations (resp. isomorphism) between those.

Final PR in the series of PR formalising the equivalence between SimplexCategory and SimplexCategoryGenRel.


Open in Gitpod

Copy link

github-actions bot commented Feb 11, 2025

PR summary e9d9f11b69

Import changes for modified files

No significant changes to the import graph

Import changes for all files
Files Import difference
Mathlib.AlgebraicTopology.SimplexCategory.GeneratorsRelations.Basic (new file) 830
Mathlib.AlgebraicTopology.SimplexCategory.GeneratorsRelations.EpiMono (new file) 831
Mathlib.AlgebraicTopology.SimplexCategory.GeneratorsRelations.NormalForms (new file) 832
Mathlib.AlgebraicTopology.SimplexCategory.GeneratorsRelations.Equivalence (new file) 833
Mathlib.AlgebraicTopology.SimplicialObject.GeneratorsRelations (new file) 849

Declarations diff

+ FreeSimplexQuiver
+ FreeSimplexQuiver.len
+ FreeSimplexQuiver.mk
+ Hom
+ P_δ
+ P_δ'
+ P_δ'_comp
+ P_δ_comp
+ P_δ_eqToHom
+ P_δ_eq_P_δ'
+ P_σ
+ P_σ'
+ P_σ'_comp
+ P_σ_comp
+ P_σ_eqToHom
+ P_σ_eq_P_σ'
+ Quiv
+ SimplexCategoryGenRel
+ SimplexCategoryGenRel.mk
+ SplitEpiσ
+ SplitMonoδ
+ eq_of_simplicialEvalδ_eq
+ eq_or_len_le_of_P_δ
+ equivSimplexCategory
+ equivSimplexCategory_functor_map_δ
+ equivSimplexCategory_functor_map_σ
+ equivSimplexCategory_functor_obj_mk
+ equivSimplexCategory_inverse_map_σ
+ equivSimplexCategory_inverse_objIsoMk
+ equivSimplexCategory_inverse_δ
+ existsUnique_P_δ_of_mono
+ existsUnique_P_σ_of_epi
+ existsUnique_toSimplexCategory_map
+ exists_P_σ_P_δ_factorisation
+ exists_normal_form_P_δ
+ exists_normal_form_P_σ
+ ext
+ homRel
+ hom_induction
+ hom_induction'
+ hom_induction_eq_top'
+ instance : toSimplexCategory.EssSurj
+ instance : toSimplexCategory.Faithful
+ instance : toSimplexCategory.Full
+ instance : toSimplexCategory.IsEquivalence := by
+ instance {n : ℕ} {i : Fin (n + 1)} : IsSplitEpi (σ i) := .mk' SplitEpiσ
+ instance {n : ℕ} {i : Fin (n + 2)} : IsSplitMono (δ i) := .mk' SplitMonoδ
+ isAdmissible
+ isAdmissibleGetElemAsFin
+ isAdmissibleHead
+ isAdmissible_cons
+ isAdmissible_ext
+ isAdmissible_head_lt
+ isAdmissible_nil
+ isAdmissible_tail
+ isSplitEpi_P_σ
+ isSplitEpi_P_σ_toSimplexCategory
+ isSplitMono_P_δ
+ isSplitMono_P_δ_toSimplexCategory
+ le_simplicialEvalδ_self
+ len
+ lt_and_eval_eq_eval_succ_of_mem_isAdmissible
+ mem_isAdmissible_iff
+ mem_isAdmissible_of_lt_and_eval_eq_eval_succ
+ mk_len
+ morphismProperty_eq_top
+ rec
+ simplicialEvalδ
+ simplicialEvalδ_eq_self_of_isAdmissible_and_lt
+ simplicialEvalδ_eq_self_of_isAdmissible_cons
+ simplicialEvalδ_monotone
+ simplicialEvalδ_of_isAdmissible
+ simplicialEvalσ
+ simplicialEvalσ_monotone
+ simplicialEvalσ_of_isAdmissible
+ simplicialEvalσ_of_lt_mem
+ simplicialInsert
+ simplicialInsert_isAdmissible
+ simplicialInsert_length
+ standardδ
+ standardδ_heq
+ standardδ_simplicialInsert
+ standardσ
+ standardσ_heq
+ standardσ_simplicialInsert
+ toSimplexCategory
+ toSimplexCategory_len
+ toSimplexCategory_map_δ
+ toSimplexCategory_map_σ
+ toSimplexCategory_obj_mk
+ δ_comp_δ
+ δ_comp_δ_nat
+ δ_comp_σ_of_gt
+ δ_comp_σ_of_le
+ δ_comp_σ_self
+ δ_comp_σ_succ
+ σ_comp_σ
+ σ_comp_σ_nat
++ mkNatIso:
++ mkNatIso_hom_app
++ mkNatIso_inv_app
++ mkNatTrans:
++ mkNatTrans_app
++ mkNatTrans_comp
++ mkNatTrans_id
++ ofGeneratorsAndRelations:
++ ofGeneratorsAndRelationsObjMkIso
++ ofGeneratorsAndRelations_map_δ
++ ofGeneratorsAndRelations_map_σ
++ δ
++ σ

You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>

## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>

The doc-module for script/declarations_diff.sh contains some details about this script.


No changes to technical debt.

You can run this locally as

./scripts/technical-debt-metrics.sh pr_summary
  • The relative value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic.
  • The absolute value is the relative value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).

@github-actions github-actions bot added the t-topology Topological spaces, uniform spaces, metric spaces, filters label Feb 11, 2025
@robin-carlier robin-carlier force-pushed the RC_SimplexCategoryGenRel8 branch from d2a3358 to 4ac4f86 Compare February 11, 2025 21:39
@mathlib4-dependent-issues-bot mathlib4-dependent-issues-bot added the blocked-by-other-PR This PR depends on another PR to Mathlib (this label is automatically managed by a bot) label Feb 11, 2025
@mathlib4-dependent-issues-bot
Copy link
Collaborator

@robin-carlier robin-carlier force-pushed the RC_SimplexCategoryGenRel8 branch 2 times, most recently from b3e9457 to 71f2347 Compare February 11, 2025 21:59
@joelriou joelriou added the t-category-theory Category theory label Feb 12, 2025
@robin-carlier robin-carlier force-pushed the RC_SimplexCategoryGenRel8 branch from 71f2347 to 530752f Compare February 12, 2025 12:03
@leanprover-community-bot-assistant leanprover-community-bot-assistant added the merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) label Feb 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocked-by-other-PR This PR depends on another PR to Mathlib (this label is automatically managed by a bot) merge-conflict The PR has a merge conflict with master, and needs manual merging. (this label is managed by a bot) t-category-theory Category theory t-topology Topological spaces, uniform spaces, metric spaces, filters
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants