Skip to content

Should poweR return 0 if the exponent is negative? #1401

@jmmarulang

Description

@jmmarulang

See the following definition

analysis/theories/exp.v

Lines 996 to 1001 in 97d0779

Definition poweR x r :=
match x with
| x'%:E => (x' `^ r)%:E
| +oo => if r == 0%R then 1%E else +oo
| -oo => if r == 0%R then 1%E else 0%E
end.

Note that for real numbers, the limit of the power function when the exponent is negative, goes to 0.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions