We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BigFloat
big(1.3)^(1//7) currently converts the rational to BigFloat before computing the power, thereby losing accuracy.
big(1.3)^(1//7)
It should instead use the specialised MPFR function mpfr_rootn_si.
mpfr_rootn_si
cc @oscardssmith