Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
- in `num_normedtype.v`:
+ lemma `nbhs_infty_gtr`

- in `uniform_structure.v`:
+ lemma `continuous_injective_withinNx`

### Changed

- in `lebesgue_stieltjes_measure.v` specialized from `numFieldType` to `realFieldType`:
Expand Down
12 changes: 12 additions & 0 deletions theories/topology_theory/uniform_structure.v
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,18 @@ rewrite !near_simpl near_withinE near_simpl => Pf; near=> y.
by have [->|] := eqVneq y x; [by apply: nbhs_singleton|near: y].
Unshelve. all: by end_near. Qed.

Lemma continuous_injective_withinNx
(T U : topologicalType) (f : T -> U) (x : T) :
{for x, continuous f} ->
(forall y, f y = f x -> y = x) -> f @ x^' --> (f x)^'.
Proof.
move=> cf fI A; rewrite /nbhs /= /dnbhs !withinE/= => -[V Vfx AV].
exists (f @^-1` V); first exact: cf Vfx.
by apply/seteqP; split=> y/=;
move/predeqP : AV => /(_ (f y))/= AV [AVfy yx];
have /contra_neq /(_ yx) := fI y; tauto.
Qed.

(* This property is primarily useful for metrizability on uniform spaces *)
Definition countable_uniformity (T : uniformType) :=
exists R : set_system (T * T), [/\
Expand Down
Loading