Skip to content
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

Adding the infinite versions of lemmas such as cvg_at_rightP in realfun.v #1261

Open
Yosuke-Ito-345 opened this issue Jul 14, 2024 · 0 comments
Labels
enhancement ✨ This issue/PR is about adding new features enhancing the library

Comments

@Yosuke-Ito-345
Copy link
Contributor

I am trying to formalize the infinite versions of lemmas in Section cvgr_fun_cvg_seq in realfun.v.
Some candidates are as follows.

Lemma cvg_ninftyP (f : R -> R) (l : R) :
  f x @[x --> -oo] --> l <->
  (forall u : R^nat, (u n @[n --> \oo] --> -oo) -> f (u n) @[n --> \oo] --> l).
Lemma cvg_pinftyP (f : R -> R) (l : R) :
  f x @[x --> +oo] --> l <->
  (forall u : R^nat, (u n @[n --> \oo] --> +oo) -> f (u n) @[n --> \oo] --> l).

If anybody is trying the same thing, please let me know to avoid duplicate work.
Since I am new to MathComp-Analysis, any advice is welcome.

@affeldt-aist affeldt-aist added the enhancement ✨ This issue/PR is about adding new features enhancing the library label Jul 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement ✨ This issue/PR is about adding new features enhancing the library
Projects
None yet
Development

No branches or pull requests

2 participants