We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See the following definition
analysis/theories/exp.v
Lines 996 to 1001 in 97d0779
Note that for real numbers, the limit of the power function when the exponent is negative, goes to 0.
The text was updated successfully, but these errors were encountered:
So the proposed alternative definition could be:
Definition poweR x r := match x with | x'%:E => (x' `^ r)%:E | +oo => if r == 0%R then 1%E else if r > 0 then +oo else 0%E | -oo => 1%E end.
(edited after discussion with @jmmarulang )
Sorry, something went wrong.
No branches or pull requests
See the following definition
analysis/theories/exp.v
Lines 996 to 1001 in 97d0779
Note that for real numbers, the limit of the power function when the exponent is negative, goes to 0.
The text was updated successfully, but these errors were encountered: