-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
gh-81313: Add the intmath module (PEP-791) #133909
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
base: main
Are you sure you want to change the base?
Changes from 11 commits
6e47acd
62cb235
091dab6
71d7f4f
7b61c5e
eaea554
da3ceab
2ab90a5
3299bf7
9b6a151
7b327ec
3194384
59b1be1
8137058
ee0dbb6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,89 @@ | ||||||
:mod:`intmath` --- Mathematical functions for integer numbers | ||||||
============================================================= | ||||||
|
||||||
.. module:: intmath | ||||||
:synopsis: Mathematical functions for integer numbers. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
|
||||||
.. versionadded:: next | ||||||
|
||||||
-------------- | ||||||
|
||||||
This module provides access to the mathematical functions for integer arguments. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
These functions accept integers and objects that implement the | ||||||
:meth:`~object.__index__` method which is used to convert the object to an integer | ||||||
number. They cannot be used with floating-point numbers or complex | ||||||
numbers. | ||||||
Comment on lines
+14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Last sentence looks redundant, though maybe it worth to be here. |
||||||
|
||||||
The following functions are provided by this module. All return values are | ||||||
integers. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
|
||||||
|
||||||
.. function:: comb(n, k) | ||||||
|
||||||
Return the number of ways to choose *k* items from *n* items without repetition | ||||||
and without order. | ||||||
|
||||||
Evaluates to ``n! / (k! * (n - k)!)`` when ``k <= n`` and evaluates | ||||||
to zero when ``k > n``. | ||||||
|
||||||
Also called the binomial coefficient because it is equivalent | ||||||
to the coefficient of k-th term in polynomial expansion of | ||||||
``(1 + x)ⁿ``. | ||||||
|
||||||
Raises :exc:`TypeError` if either of the arguments are not integers. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
Raises :exc:`ValueError` if either of the arguments are negative. | ||||||
|
||||||
|
||||||
.. function:: factorial(n) | ||||||
|
||||||
Return *n* factorial as an integer. Raises :exc:`ValueError` if *n* is not integral or | ||||||
is negative. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
|
||||||
|
||||||
.. function:: gcd(a, b) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
Return the greatest common divisor of the specified integer arguments. | ||||||
If any of the arguments is nonzero, then the returned value is the largest | ||||||
positive integer that is a divisor of all arguments. If all arguments | ||||||
are zero, then the returned value is ``0``. ``gcd()`` without arguments | ||||||
returns ``0``. | ||||||
picnixz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
|
||||||
.. function:: isqrt(n) | ||||||
|
||||||
Return the integer square root of the nonnegative integer *n*. This is the | ||||||
floor of the exact square root of *n*, or equivalently the greatest integer | ||||||
*a* such that *a*\ ² |nbsp| ≤ |nbsp| *n*. | ||||||
|
||||||
For some applications, it may be more convenient to have the least integer | ||||||
*a* such that *n* |nbsp| ≤ |nbsp| *a*\ ², or in other words the ceiling of | ||||||
the exact square root of *n*. For positive *n*, this can be computed using | ||||||
``a = 1 + isqrt(n - 1)``. | ||||||
|
||||||
|
||||||
.. function:: lcm(*integers) | ||||||
|
||||||
Return the least common multiple of the specified integer arguments. | ||||||
If all arguments are nonzero, then the returned value is the smallest | ||||||
positive integer that is a multiple of all arguments. If any of the arguments | ||||||
is zero, then the returned value is ``0``. ``lcm()`` without arguments | ||||||
returns ``1``. | ||||||
|
||||||
|
||||||
.. function:: perm(n, k=None) | ||||||
|
||||||
Return the number of ways to choose *k* items from *n* items | ||||||
without repetition and with order. | ||||||
|
||||||
Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates | ||||||
to zero when ``k > n``. | ||||||
|
||||||
If *k* is not specified or is ``None``, then *k* defaults to *n* | ||||||
and the function returns ``n!``. | ||||||
|
||||||
Raises :exc:`TypeError` if either of the arguments are not integers. | ||||||
serhiy-storchaka marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
Raises :exc:`ValueError` if either of the arguments are negative. | ||||||
|
||||||
|
||||||
.. |nbsp| unicode:: 0xA0 | ||||||
:trim: |
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -83,7 +83,11 @@ Other language changes | |||||||||||
New modules | ||||||||||||
=========== | ||||||||||||
|
||||||||||||
* None yet. | ||||||||||||
intmath | ||||||||||||
AA-Turner marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||
------- | ||||||||||||
|
||||||||||||
This module provides access to the mathematical functions for integer arguments. | ||||||||||||
(Contributed by Serhiy Storchaka in :gh:`81313`.) | ||||||||||||
Comment on lines
+89
to
+90
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
|
||||||||||||
|
||||||||||||
Improved modules | ||||||||||||
|
Uh oh!
There was an error while loading. Please reload this page.