Skip to content

Commit

Permalink
convergence of functions wrt deleted nbhs (#1385)
Browse files Browse the repository at this point in the history
* convergence of functions wrt deleted nbhs

---------

Co-authored-by: IshiguroYoshihiro <[email protected]>
  • Loading branch information
affeldt-aist and IshiguroYoshihiro authored Nov 9, 2024
1 parent 6a37d42 commit fa2bfc6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@

- in `measure.v`:
+ lemma `countable_measurable`
- in `realfun.v`:
+ lemma `cvgr_dnbhsP`

### Changed

Expand Down
14 changes: 14 additions & 0 deletions theories/realfun.v
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,20 @@ apply: pfl.
by split; [move=> k; rewrite ltrNl//|apply/cvgNP => /=; rewrite opprK].
Qed.

Lemma cvgr_dnbhsP (f : R -> R) (p l : R) :
f x @[x --> p^'] --> l <->
(forall u : R^nat, (forall n, u n != p) /\ (u n @[n --> \oo] --> p) ->
f (u n) @[n --> \oo] --> l).
Proof.
split=> [/cvgrPdist_le fpl u [up /cvgrPdist_lt put]|pfl].
apply/cvgrPdist_le => e /fpl [r /=] /put[n _ {}put] {}fpl.
near=> t; apply: fpl => //=; apply: put.
by near: t; exact: nbhs_infty_ge.
apply: cvg_at_right_left_dnbhs.
- by apply/cvg_at_rightP => u [pu ?]; apply: pfl; split => // n; rewrite gt_eqF.
- by apply/cvg_at_leftP => u [pu ?]; apply: pfl; split => // n; rewrite lt_eqF.
Unshelve. all: end_near. Qed.

End cvgr_fun_cvg_seq.

Section cvge_fun_cvg_seq.
Expand Down

0 comments on commit fa2bfc6

Please sign in to comment.