`big(1.3)^(1//7)` currently converts the rational to `BigFloat` before computing the power, thereby losing accuracy. It should instead use the specialised MPFR function `mpfr_rootn_si`. cc @oscardssmith