exact couple still
This commit is contained in:
parent
6e13cb9dad
commit
cefdc8f4e7
1 changed files with 27 additions and 3 deletions
|
@ -32,13 +32,37 @@ definition diff_im_in_ker {B : AbGroup} (d : B →g B) (H : is_differential d) :
|
||||||
definition homology {B : AbGroup} (d : B →g B) (H : is_differential d) : AbGroup :=
|
definition homology {B : AbGroup} (d : B →g B) (H : is_differential d) : AbGroup :=
|
||||||
@quotient_ab_group (ab_kernel d) (image_subgroup_of_diff d H)
|
@quotient_ab_group (ab_kernel d) (image_subgroup_of_diff d H)
|
||||||
|
|
||||||
|
definition homology_ugly {B : AbGroup} (d : B →g B) (H : is_differential d) : AbGroup :=
|
||||||
|
(quotient_ab_group (image_subgroup (ab_subgroup_of_subgroup_incl (diff_im_in_ker d H))))
|
||||||
|
|
||||||
definition SES_of_differential {B : AbGroup} (d : B →g B) (H : is_differential d) : SES (ab_image d) (ab_kernel d) (quotient_ab_group (image_subgroup (ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)))) :=
|
definition homology_iso_ugly {B : AbGroup} (d : B →g B) (H : is_differential d) : (homology d H) ≃g (homology_ugly d H) :=
|
||||||
begin
|
begin
|
||||||
rexact SES_of_inclusion (ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)) (is_embedding_ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)),
|
-- fapply quotientgroupiso ...
|
||||||
|
exact sorry
|
||||||
|
end
|
||||||
|
|
||||||
|
definition SES_iso_C {A B C C' : AbGroup} (ses : SES A B C) (k : C ≃g C') : SES A B C' :=
|
||||||
|
begin
|
||||||
|
fapply SES.mk,
|
||||||
|
exact SES.f ses,
|
||||||
|
exact k ∘g SES.g ses,
|
||||||
|
exact SES.Hf ses,
|
||||||
|
fapply @is_surjective_compose _ _ _ k (SES.g ses),
|
||||||
|
exact is_surjective_of_is_equiv k,
|
||||||
|
exact SES.Hg ses,
|
||||||
|
fapply is_exact.mk,
|
||||||
|
repeat exact sorry
|
||||||
|
end
|
||||||
|
|
||||||
|
definition SES_of_differential_ugly {B : AbGroup} (d : B →g B) (H : is_differential d) : SES (ab_image d) (ab_kernel d) (homology_ugly d H) :=
|
||||||
|
begin
|
||||||
|
exact SES_of_inclusion (ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)) (is_embedding_ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)),
|
||||||
end
|
end
|
||||||
|
|
||||||
|
definition SES_of_differential {B : AbGroup} (d : B →g B) (H : is_differential d) : SES (ab_image d) (ab_kernel d) (homology d H) :=
|
||||||
|
begin
|
||||||
|
exact SES_of_inclusion (ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)) (is_embedding_ab_subgroup_of_subgroup_incl (diff_im_in_ker d H)),
|
||||||
|
end
|
||||||
|
|
||||||
structure exact_couple (A B : AbGroup) : Type :=
|
structure exact_couple (A B : AbGroup) : Type :=
|
||||||
( i : A →g A) (j : A →g B) (k : B →g A)
|
( i : A →g A) (j : A →g B) (k : B →g A)
|
||||||
|
|
Loading…
Reference in a new issue