-
Notifications
You must be signed in to change notification settings - Fork 48
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
differentiation under integral #1435
base: master
Are you sure you want to change the base?
Conversation
theories/normedtype.v
Outdated
@@ -2651,6 +2660,12 @@ Qed. | |||
Lemma cvg_zero f a : (f - cst a) @ F --> (0 : V) -> f @ F --> a. | |||
Proof. by move=> Cfa; apply: cvg_sub0 Cfa (cvg_cst _). Qed. | |||
|
|||
Lemma cvgr_sub0 f a : (fun x => f x - a) @ F --> 0 <-> f @ F --> a. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the naming of this lemma.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that it was named after:
cvge_sub0 : forall {I : Type} {F : set_system I}, Filter F ->
forall {R : realFieldType} (f : I -> \bar R) [k : \bar R],
k \is a fin_num -> (f x - k)%E @[x --> F] --> 0 <-> f x @[x --> F] --> k
What about cvg_zeroP
? Since it is like cvg_zero
but going in both directions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Following the convention of subr_eq0
the latter should be sube_cvg0
, and the former subr_cvg0
I have added the gauss integral as an application of differentiation under integral |
Co-authored-by: IshiguroYoshihiro <[email protected]>
280230e
to
4b8abd5
Compare
Motivation for this change
this can certainly be generalized but this version has already been used to prove the Gauss integral so it is maybe worth having anyway
Checklist
CHANGELOG_UNRELEASED.md
- [ ] added corresponding documentation in the headersReference: How to document
Reminder to reviewers