-
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
proof of L'Hopital rule #1371
base: master
Are you sure you want to change the base?
proof of L'Hopital rule #1371
Conversation
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.
Main comment is about weakening nbhs a U
to be only on the side of the limit. But generally happy to see more foundational calc stuff happening
theories/realfun.v
Outdated
|
||
Section lhopital. | ||
Context {R : realType}. | ||
Variables (f df g dg : R -> R) (a : R) (U : set R) (Ua : nbhs a U). |
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 usual, a question about boundary conditions. I'm a bit surprised to see we require f
to be derivable in a full neighborhood of a
. But then only take the right/left limit. Instead I would expect to see either a^'- U
or a^'+U
depending on the direction of the limit. Will the theorem still go through with that weakening?
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.
Good catch - I think this should go through, but changes are a bit more time-consuming than I expected so still in progress, should be done sometime next week.
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.
@ndslusarz do you have progress to share?
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.
Sorry, forgot to send an update before xmas - unfortunately not a major update, haven't been able to make it work for the restricted neighbourhoods (but still think it should be possible, so I'll get back on that). I could push the unfinished version in the meantime if you'd like?
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.
Yes.
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.
Pushed.
moved the lemmas to |
Motivation for this change
Co-authored by: @affeldt-aist @hoheinzollern
Proofs of L'Hopital rule for limits taken on left and right, and Cauchy's mean value theorem.
Checklist
CHANGELOG_UNRELEASED.md
Reference: How to document
Reminder to reviewers