Module mathcomp.analysis.topology_theory.pseudometric_structure
From HB Require Import structures.From mathcomp Require Import all_ssreflect_compat all_algebra all_classical.
From mathcomp Require Import interval_inference reals topology_structure.
From mathcomp Require Import uniform_structure.
Import Order.TTheory GRing.Theory Num.Theory.
Set SsrOldRewriteGoalsOrder.
Set Implicit Arguments.
Unset Strict Implicit.
Unset Printing Implicit Defensive.
#[local]
Obligation Tactic := idtac.
Local Open Scope classical_set_scope.
Local Open Scope ring_scope.
Definition
entourage_ : forall {R : numDomainType} {T T' : Type}, (T -> R -> set T') -> set_system (T * T') entourage_ is not universe polymorphic Arguments entourage_ {R} {T T'}%_type_scope ball%_function_scope _ entourage_ is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.entourage_ Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 60, characters 11-21
@filter_from R _ [set x | 0 < x] (fun e => [set xy | ball xy.1 e xy.2]).
Lemma entourage_E {R : numDomainType} {T T'} (ball : T -> R -> set T') :
entourage_ ball =
@filter_from R _ [set x | 0 < x] (fun e => [set xy | ball xy.1 e xy.2]).
Proof.
HB.mixin Record Uniform_isPseudoMetric (R : numDomainType) M & Uniform M := {
ball : M -> R -> M -> Prop ;
ball_center_subproof : forall x (e : R), 0 < e -> ball x e x ;
ball_sym_subproof : forall x y (e : R), ball x e y -> ball y e x ;
ball_triangle_subproof :
forall x y z e1 e2, ball x e1 y -> ball y e2 z -> ball x (e1 + e2) z;
entourageE_subproof : entourage = entourage_ ball
}.
#[short(type="pseudoMetricType")]
HB.structure Definition PseudoMetric (R : numDomainType) :=
{T of Uniform T & Uniform_isPseudoMetric R T}.
#[short(type="pseudoPMetricType")]
HB.structure Definition PseudoPointedMetric (R : numDomainType) :=
{T of Pointed T & Uniform T & Uniform_isPseudoMetric R T}.
HB.factory Record Nbhs_isPseudoMetric (R : numFieldType) M & Nbhs M := {
ent : set_system (M * M);
nbhsE : nbhs = nbhs_ ent;
ball : M -> R -> M -> Prop ;
ball_center : forall x (e : R), 0 < e -> ball x e x ;
ball_sym : forall x y (e : R), ball x e y -> ball y e x ;
ball_triangle :
forall x y z e1 e2, ball x e1 y -> ball y e2 z -> ball x (e1 + e2) z;
entourageE : ent = entourage_ ball
}.
HB.builders Context R M & Nbhs_isPseudoMetric R M.
Local Open Scope relation_scope.
Let ball_le x : {homo ball x : e1 e2 / e1 <= e2 >-> e1 `<=` e2}.
Proof.
move: le12; rewrite le_eqVlt => /orP [/eqP <- //|].
rewrite -subr_gt0 => lt12.
rewrite -[e2](subrK e1); apply: ball_triangle xe1_y.
suff : ball x (PosNum lt12)%:num x by [].
exact: ball_center.
Qed.
Let entourage_filter_subproof : Filter ent.
Proof.
Let ball_sym_subproof A : ent A -> diagonal `<=` A.
Proof.
by apply: sbeA; rewrite /= xey; exact: ball_center.
Qed.
Let ball_triangle_subproof A : ent A -> ent A^-1.
Proof.
Let entourageE_subproof A : ent A -> exists2 B, ent B & B \; B `<=` A.
Proof.
HB.instance Definition _ := Nbhs_isUniform.Build M
entourage_filter_subproof ball_sym_subproof ball_triangle_subproof
entourageE_subproof nbhsE.
HB.instance Definition _ := Uniform_isPseudoMetric.Build R M
ball_center ball_sym ball_triangle entourageE.
HB.end.
Lemma entourage_ballE {R : numDomainType} {M : pseudoMetricType R} :
entourage_ (@ball R M) = entourage.
Proof.
Lemma entourage_from_ballE {R : numDomainType} {M : pseudoMetricType R} :
@filter_from R _ [set x : R | 0 < x]
(fun e => [set xy | @ball R M xy.1 e xy.2]) = entourage.
Proof.
Lemma entourage_ball {R : numDomainType} (M : pseudoMetricType R)
(e : {posnum R}) : entourage [set xy : M * M | ball xy.1 e%:num xy.2].
Proof.
Definition
nbhs_ball_ : forall {R : numDomainType} {T T' : Type}, (T -> R -> set T') -> T -> set_system T' nbhs_ball_ is not universe polymorphic Arguments nbhs_ball_ {R} {T T'}%_type_scope ball%_function_scope x _ nbhs_ball_ is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.nbhs_ball_ Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 162, characters 11-21
(x : T) := @filter_from R _ [set e | e > 0] (ball x).
Definition
nbhs_ball : forall {R : numDomainType} {M : pseudoMetricType R}, M -> set_system M nbhs_ball is not universe polymorphic Arguments nbhs_ball {R M} x _ nbhs_ball is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.nbhs_ball Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 165, characters 11-20
nbhs_ball_ (@ball R M).
Lemma nbhs_ballE {R : numDomainType} {M : pseudoMetricType R} :
@nbhs_ball R M = nbhs.
Proof.
Lemma filter_from_ballE {R : numDomainType} {M : pseudoMetricType R} x :
@filter_from R _ [set x : R | 0 < x] (@ball R M x) = nbhs x.
Proof.
Module Export NbhsBall.
Definition
NbhsBall.nbhs_simpl : (forall (T : Type) (F : set_system T), filter.nbhs F = F) * (forall (T : Type) (F : filter.filter_on T), filter.nbhs F = filter.nbhs (filter.filter F)) * (forall (M : uniformType) (x : M), filter.filter_from entourage ((xsection (T2:=M))^~ x) = filter.nbhs x) * (forall M : uniformType, nbhs_ entourage = filter.nbhs) * (forall (R : numDomainType) (M : pseudoMetricType R) (x : M), filter.filter_from [set x0 | (0 < x0)%R] (ball x) = filter.nbhs x) * (forall (R : numDomainType) (M : pseudoMetricType R), nbhs_ball = filter.nbhs) NbhsBall.nbhs_simpl is not universe polymorphic NbhsBall.nbhs_simpl is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.NbhsBall.nbhs_simpl Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 183, characters 11-21
End NbhsBall.
Lemma nbhs_ballP {R : numDomainType} {M : pseudoMetricType R} (x : M) P :
nbhs x P <-> nbhs_ball x P.
Proof.
Lemma ball_center {R : numDomainType} (M : pseudoMetricType R) (x : M)
(e : {posnum R}) : ball x e%:num x.
Proof.
Section pseudoMetricType_numDomainType.
Context {R : numDomainType} {M : pseudoMetricType R}.
Implicit Types x y z : M.
Lemma ballxx x (e : R) : 0 < e -> ball x e x.
Proof.
Lemma ball_sym x y (e : R) : ball x e y -> ball y e x.
Proof.
Lemma ball_symE x y (e : R) : ball x e y = ball y e x.
Lemma ball_triangle y x z (e1 e2 : R) :
ball x e1 y -> ball y e2 z -> ball x (e1 + e2) z.
Proof.
Lemma nbhsx_ballx x (eps : R) : 0 < eps -> nbhs x (ball x eps).
Proof.
Lemma open_nbhs_ball x (eps : {posnum R}) : open_nbhs x (ball x eps%:num)°.
Proof.
by apply: nbhs_singleton; apply: nbhs_interior; exact: nbhsx_ballx.
Qed.
Lemma le_ball x (e1 e2 : R) : e1 <= e2 -> ball x e1 `<=` ball x e2.
Proof.
by rewrite -[e2](subrK e1); apply/ball_triangle/ballxx; rewrite subr_gt0.
Qed.
Lemma near_ball y (eps : R) : 0 < eps -> \forall y' \near y, ball y eps y'.
Proof.
Lemma dnbhs_ball x (e : R) : (0 < e)%R -> x^' (ball x e `\ x).
Proof.
Lemma fcvg_ballP {F} {FF : Filter F} (y : M) :
F --> y <-> forall eps : R, 0 < eps -> \forall y' \near F, ball y eps y'.
Proof.
Lemma fcvg_ball {F} {FF : Filter F} (y : M) :
F --> y -> forall eps : R, 0 < eps -> \forall y' \near F, ball y eps y'.
Proof.
Lemma cvg_ballP {T} {F} {FF : Filter F} (f : T -> M) y :
f @ F --> y <-> forall eps : R, 0 < eps -> \forall x \near F, ball y eps (f x).
Proof.
Lemma cvg_ball {T} {F} {FF : Filter F} (f : T -> M) y :
f @ F --> y -> forall eps : R, 0 < eps -> \forall x \near F, ball y eps (f x).
Proof.
Lemma cvgi_ballP T {F} {FF : Filter F} (f : T -> M -> Prop) y :
f `@ F --> y <->
forall eps : R, 0 < eps -> \forall x \near F, exists z, f x z /\ ball y eps z.
Proof.
move=> /nbhs_ballP[_ /posnumP[eps] subP].
rewrite near_simpl near_mapi; near=> x.
have [//|z [fxz yz]] := near (Fy _ (gt0 eps)) x.
by exists z => //; split => //; apply: subP.
Unshelve. all: end_near. Qed.
Lemma cvgi_ball T {F} {FF : Filter F} (f : T -> M -> Prop) y :
f `@ F --> y ->
forall eps : R, 0 < eps -> F [set x | exists z, f x z /\ ball y eps z].
Proof.
End pseudoMetricType_numDomainType.
#[global] Hint Resolve nbhsx_ballx : core.
Global Instance entourage_proper_filter {R : numDomainType}
{M : pseudoPMetricType R} : ProperFilter (@entourage M).
Proof.
by exists (point, point); apply: sbeA; apply: ballxx.
Qed.
Arguments nbhsx_ballx {R M} x eps.
Arguments near_ball {R M} y eps.
Section pseudoMetricType_numFieldType.
Context {R : numFieldType} {M : pseudoMetricType R}.
Lemma ball_split (z x y : M) (e : R) :
ball x (e / 2) z -> ball z (e / 2) y -> ball x e y.
Proof.
Lemma ball_splitr (z x y : M) (e : R) :
ball z (e / 2) x -> ball z (e / 2) y -> ball x e y.
Proof.
Lemma ball_splitl (z x y : M) (e : R) :
ball x (e / 2) z -> ball y (e / 2) z -> ball x e y.
Proof.
End pseudoMetricType_numFieldType.
Section entourages.
Variable R : numDomainType.
Lemma unif_continuousP (U V : pseudoMetricType R) (f : U -> V) :
unif_continuous f <->
forall e, e > 0 -> exists2 d, d > 0 &
forall x, ball x.1 d x.2 -> ball (f x.1) e (f x.2).
Proof.
by rewrite entourage_ballE; apply: fmap_filter.
by rewrite /unif_continuous -!entourage_ballE filter_fromP.
Qed.
End entourages.
Lemma countable_uniformity_metric {R : realType} {T : pseudoMetricType R} :
countable_uniformity T.
Proof.
exists (fun n => [set xy : T * T | ball xy.1 n.+1%:R^-1 xy.2]); last first.
by move=> n; exact: (entourage_ball _ n.+1%:R^-1%:pos).
move=> E; rewrite -entourage_ballE => -[e e0 subE].
exists (Num.truncn e^-1); apply: subset_trans subE => xy; apply: le_ball.
by rewrite /= -[leRHS]invrK lef_pV2 ?posrE ?invr_gt0// ltW// truncnS_gt.
Qed.
HB.instance Definition _ (R : zmodType) := isPointed.Build R 0.
Definition
ball_ : forall {R : numDomainType} {V : GRing.Zmodule.Exports.zmodType}, (V -> R) -> V -> R -> set V ball_ is not universe polymorphic Arguments ball_ {R V} norm x e%_ring_scope y / (where some original arguments have been renamed) The reduction tactics unfold ball_ when applied to 6 arguments ball_ is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.ball_ Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 330, characters 11-16
(R : numDomainType) (V : zmodType) (norm : V -> R) (x : V) (e : R) :=
[set y | norm (x - y) < e].
Arguments ball_ {R} {V} norm x e%_R y /.
Lemma subset_ball_prop_in_itv (R : realDomainType) (x : R) e P :
ball_ Num.Def.normr x e `<=` P <->
{in `](x - e), (x + e)[, forall y, P y}.
Proof.
Lemma subset_ball_prop_in_itvcc (R : realDomainType) (x : R) e P : 0 < e ->
ball_ Num.Def.normr x (2 * e) `<=` P ->
{in `[(x - e), (x + e)], forall y, P y}.
Proof.
by rewrite (le_lt_trans ye)// ltr_pMl// ltr1n.
Qed.
Global Instance ball_filter (R : realDomainType) (t : R) : Filter
[set P | exists2 i : R, 0 < i & ball_ Num.norm t i `<=` P].
Proof.
- move=> -[x x0 xP] [y ? yQ]; exists (Num.min x y); first by rewrite lt_min x0.
move=> z tz; split.
by apply: xP; rewrite /= (lt_le_trans tz) // ge_min lexx.
by apply: yQ; rewrite /= (lt_le_trans tz) // ge_min lexx orbT.
- by move=> -[x ? xP]; exists x => //; apply: (subset_trans xP).
Qed.
#[global] Hint Extern 0 (Filter [set P | exists2 i, _ & ball_ _ _ i `<=` P]) =>
(apply: ball_filter) : typeclass_instances.
Section pseudoMetric_of_normedDomain.
Context {K : numDomainType} {R : normedZmodType K}.
Lemma ball_norm_center (x : R) (e : K) : 0 < e -> ball_ Num.norm x e x.
Lemma ball_norm_symmetric (x y : R) (e : K) :
ball_ Num.norm x e y -> ball_ Num.norm y e x.
Proof.
Lemma ball_norm_triangle (x y z : R) (e1 e2 : K) :
ball_ Num.norm x e1 y -> ball_ Num.norm y e2 z -> ball_ Num.norm x (e1 + e2) z.
Proof.
Lemma nbhs_ball_normE :
@nbhs_ball_ K R R (ball_ Num.norm) = nbhs_ (entourage_ (ball_ Num.norm)).
Proof.
End pseudoMetric_of_normedDomain.
HB.instance Definition _ (R : zmodType) := Pointed.on R^o.
#[short(type="completePseudoMetricType")]
HB.structure Definition CompletePseudoMetric R :=
{T of Complete T & PseudoPointedMetric R T}.
Definition
cauchy_ex : forall {R : numDomainType} {T : pseudoMetricType R}, set_system T -> Prop cauchy_ex is not universe polymorphic Arguments cauchy_ex {R T} F cauchy_ex is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.cauchy_ex Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 398, characters 11-20
(F : set_system T) :=
forall eps : R, 0 < eps -> exists x, F (ball x eps).
Definition
cauchy_ball : forall {R : numDomainType} {T : pseudoMetricType R}, set_system T -> Prop cauchy_ball is not universe polymorphic Arguments cauchy_ball {R T} F cauchy_ball is transparent Expands to: Constant mathcomp.analysis.topology_theory.pseudometric_structure.cauchy_ball Declared in library mathcomp.analysis.topology_theory.pseudometric_structure, line 402, characters 11-22
(F : set_system T) :=
forall e, e > 0 -> \forall x & y \near F, ball x e y.
Lemma cauchy_ballP (R : numDomainType) (T : pseudoMetricType R)
(F : set_system T) (FF : Filter F) :
cauchy_ball F <-> cauchy F.
Proof.
by move=> _/posnumP[eps]; apply/cauchyF/entourage_ball.
move=> U; rewrite -entourage_ballE => - [_/posnumP[eps] xyepsU].
by near do apply: xyepsU; apply: cauchyF.
Unshelve. all: by end_near. Qed.
Lemma cauchy_exP (R : numFieldType) (T : pseudoMetricType R)
(F : set_system T) (FF : Filter F) :
cauchy_ex F -> cauchy F.
Proof.
have /Fc [z /= Fze] := [gt0 of e%:num / 2]; near=> x y; apply: sdeA => /=.
by apply: (@ball_splitr _ _ z); [near: x|near: y].
Unshelve. all: by end_near. Qed.
Lemma cauchyP (R : numFieldType) (T : pseudoMetricType R)
(F : set_system T) (PF : ProperFilter F) :
cauchy F <-> cauchy_ex F.
Proof.
near F => x; exists x; near: x; apply: (@nearP_dep _ _ F F).
exact/Fcauchy/entourage_ball.
Unshelve. all: by end_near. Qed.