6 | | tested on pari master at commit `17795-d04cdd3` with an amd64. |
| 6 | but should be `85.1885681951527` (as it was with previous pari release). Increasing the precision, it gets better but the relative error is incredibly huge |
| 7 | {{{ |
| 8 | ? \p 30 |
| 9 | realprecision = 38 significant digits (30 digits displayed) |
| 10 | ? intnum(x=0,13,sin(x)+sin(x^2) + x) |
| 11 | %2 = 84.1818153922296529667398383572 |
| 12 | ? \p 40 |
| 13 | realprecision = 57 significant digits (40 digits displayed) |
| 14 | ? intnum(x=0,13,sin(x)+sin(x^2) + x) |
| 15 | %3 = 85.18860335415782535357810701961378283432 |
| 16 | ? \p 50 |
| 17 | ? intnum(x=0,13,sin(x)+sin(x^2) + x) |
| 18 | %4 = 85.188603354157825353578107019613782834315433312524 |
| 19 | }}} |
| 20 | Tested on PARI master at commit `17795-d04cdd3` with an amd64. |