-
Notifications
You must be signed in to change notification settings - Fork 64
expR_ge1Dxn #1638
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
expR_ge1Dxn #1638
Conversation
theories/exp.v
Outdated
| have -> : 1 + x = limn (series (f x)). | ||
| by apply/esym/lim_near_cst => //; near=> n; apply: F; near: n. | ||
| apply: ler_lim; first by apply: is_cvg_near_cst; near=> n; apply: F; near: n. | ||
| pose f n (x : R) i := ((i == 0%nat)%:R + x ^+ n / n`!%:R *+ (i == n)). |
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.
| pose f n (x : R) i := ((i == 0%nat)%:R + x ^+ n / n`!%:R *+ (i == n)). | |
| pose f n (x : R) i := ((i == 0%N)%:R + x ^+ n / n`!%:R *+ (i == n)). |
theories/exp.v
Outdated
| by apply/esym/lim_near_cst => //; near=> n; apply: F; near: n. | ||
| apply: ler_lim; first by apply: is_cvg_near_cst; near=> n; apply: F; near: n. | ||
| pose f n (x : R) i := ((i == 0%nat)%:R + x ^+ n / n`!%:R *+ (i == n)). | ||
| have F m : (n.+1 < m)%nat -> |
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.
| have F m : (n.+1 < m)%nat -> | |
| have F m : (n.+1 < m)%N -> |
theories/exp.v
Outdated
|
|
||
| Local Lemma expR_ge1Dx_subproof x : 0 <= x -> 1 + x <= expR x. | ||
| Lemma expR_ge1Dxn x n : 0 <= x -> | ||
| 1 + x ^+ n.+1 / n.+1`!%:R <= expR x. |
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.
can be on the previous line without exceeding 80 cols?
|
Looks good. Any awaiting application? |
I used this lemma to prove a property of the gamma function, which I'll include in an upcoming PR: Lemma Gamma_add1 a : 1 <= a -> (Gamma (a + 1) = a%:E * Gamma a)%E. |
|
I did not at first sight judge whether this rather special form of statement could be useful, but with the application given, I approve this PR. (However I cannot find the approval button now..) |
bd58acf to
4538449
Compare
* expR_ge1Dxn
Motivation for this change
This lemma is a property of expR, which is generalized from a local lemma
0 <= x -> 1 + x <= expR x.Checklist
CHANGELOG_UNRELEASED.mdReference: How to document
Merge policy
As a rule of thumb:
all compile are preferentially merged into master.
Reminder to reviewers