-
Notifications
You must be signed in to change notification settings - Fork 49
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
gen of int. by subst + normal distribution #1450
Conversation
983fc86
to
7d4f700
Compare
8a785cb
to
43cf86d
Compare
eb3bf3e
to
2315137
Compare
@IshiguroYoshihiro I asked Saikawa-san to take a look, but could you also check the contents of this PR? |
2315137
to
cd7bdc3
Compare
|
@IshiguroYoshihiro no input about this PR? |
@t6s maybe I can add a piece of LaTeXed documentation as for the PR you already just reviewed. |
|
c9e2ed2
to
20ed021
Compare
We have also added the normal distribution has a direct application. |
Co-authored-by: IshiguroYoshihiro <[email protected]>
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.
As an impression from the latex header doc, the statements of the added lemmas look good.
The lemma integralT_gauss
is a serious example, and I expect that its proof provide a good test for the added lemmas.
I therefore would like to approve this PR although I myself have not checked all the changes by running them.
A minor comment: |
fdc7c2b
to
23aa62e
Compare
Motivation for this change
PR #1448 should be merged firstmergedto be cleaned@IshiguroYoshihiroThe goal of this PR is to provide integration by substitution over unbounded intervals
to compute integrals.
We already had the following lemmas for integration by substitution:
integration_by_substitution_decreasing
:over [F b, F a], decreasing change of vars F
integration_by_substitution_oppr
:over [-b, -a], change of vars (fun x => - x)
integration_by_substitution_increasing
:over [F a, F b], increasing change of vars F
This PR adds integration by substitution for non-negative functions over rays:
decreasing_ge0_integration_by_substitutiony
:over ]-oo, F a], decreasing change of vars F
ge0_integration_by_substitutionNy
:over ]-oo, -a], change of vars (fun x => - x)
increasing_ge0_integration_by_substitutiony
:over [F a, +oo[, increasing change of vars F
(proved using above lemmas and the properties of negation)
increasing_ge0_integration_by_substitutionNy
:over ]-oo, F b], increasing change of vars F
(proved using above lemmas and the properties of negation)
increasing_ge0_integration_by_substitutionT
:over ]-oo, +oo[, increasing change of vars F
(proved using above lemmas)
Checklist
CHANGELOG_UNRELEASED.md
Reference: How to document
Reminder to reviewers