Re: BigRoot precision question

2022-06-11 Thread Bruce Gray
> On Jun 11, 2022, at 4:41 AM, ToddAndMargo via perl6-users > wrote: > > Hi All, > > In the following paper on Big Root: > > https://newbedev.com/how-can-i-set-the-level-of-precision-for-raku-s-sqrt > > > > use BigRoot; > > BigRoot.precision = 7; > > say (BigRoot.newton's-sqrt:

BigRoot precision question

2022-06-11 Thread ToddAndMargo via perl6-users
Hi All, In the following paper on Big Root: https://newbedev.com/how-can-i-set-the-level-of-precision-for-raku-s-sqrt > use BigRoot; > BigRoot.precision = 7; > say (BigRoot.newton's-sqrt: 2;).base(10) 1.4142136 > say (BigRoot.newton's-sqrt: 2;).base(16) 1.6A09E7 That is a base(10) precision.