English
If m is injective, comap m (map m f) = f.
Русский
Если m инъективно, то comap m (map m f) = f.
LaTeX
$$$ \\operatorname{comap}_m( \\operatorname{map}_m f ) = f $$$
Lean4
theorem comap_map {f : Filter α} {m : α → β} (h : Injective m) : comap m (map m f) = f :=
le_antisymm
(fun s hs =>
mem_of_superset (preimage_mem_comap <| image_mem_map hs) <| by simp only [preimage_image_eq s h, Subset.rfl])
le_comap_map