Instructions for use of this factorizer:
Return to the Math APIs page.
type | input | result | json output |
---|---|---|---|
real, single | 9134567890123456789 | prime | |
999999 | 33·7·11·13·37 | {"factors" : [[3, 3], [7, 1], [11, 1], [13, 1], [37, 1]]} | |
complex, single | 2 | -i(1 + i)2 | {"exponent": 3, "factors": [["1+i", 2]]} |
3 | prime | ||
1 + 3i | (1 + i)(2 + i) | {"exponent": 0, "factors": [["1+i": "1"], ["2+i": "1"]]} | |
real, list | 9,12 | 3 | |
9,10 | relatively prime | ||
8,10,12 | 2 | ||
complex, list | 2i, -1 + 3i, 1 + 3i | 1 + i | |
decimal-to-fraction | 3.4 | 3 2⁄5 | {"integer_part": 3, "numerator": 2, "denominator": 5} |
3.4r56 | 3 226⁄495 | {"integer_part": 3, "numerator": 226, "denominator": 495} |
creator:
Peter Knipp
repo:
https://github.com/pknipp/integer-factorizer