Skip to content

Add Lemma cvge_ninftyP #1591

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 30, 2025
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
2 changes: 2 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
- in `exp.v`:
+ lemmas `lnNy`, `powR_cvg0`, `derivable_powR`, `powR_derive1`
+ Instance `is_derive1_powR`
- in `realfun.v`:
+ lemma `cvge_ninftyP`

### Changed

Expand Down
13 changes: 13 additions & 0 deletions theories/realfun.v
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,19 @@ move /not_near_inftyP => eps_sep; exists (PosNum eps_gt0) => A /=.
by case: (eps_sep _ (num_real A)) => x ? ?; exists x.
Unshelve. all: by end_near. Qed.

(* NB: almost the same proof as cvg_ninftyP *)
Lemma cvge_ninftyP (f : R -> \bar R) (l : \bar R) :
f x @[x --> -oo] --> l <->
forall u : R^nat, (u n @[n --> \oo] --> -oo) -> f (u n) @[n --> \oo] --> l.
Proof.
rewrite cvgNy_compNP cvge_pinftyP/= (@bij_forall R^nat _ -%R)//.
have u_opp (u : R^nat) :
((- u) n @[n --> \oo] --> +oo) = (u n @[n --> \oo] --> -oo).
by rewrite propeqE cvgNry.
by under eq_forall do
(rewrite u_opp; under (eq_cvg _ (nbhs l)) do rewrite opprK).
Qed.

End cvge_fun_dvg_seq.

Section fun_cvg_realType.
Expand Down
Loading