Comments Bradley Lucier (20 Jul 2026 21:14 UTC)
Re: Comments John Cowan (20 Jul 2026 22:40 UTC)
Re: Comments Bradley Lucier (21 Jul 2026 00:43 UTC)
Re: Comments Peter McGoron (21 Jul 2026 02:58 UTC)
Re: Comments Bradley Lucier (21 Jul 2026 20:11 UTC)
Re: Comments Peter McGoron (21 Jul 2026 14:53 UTC)
Re: Comments Bradley Lucier (21 Jul 2026 20:09 UTC)
Re: Comments Marc Feeley (21 Jul 2026 21:43 UTC)
Re: Comments Peter McGoron (22 Jul 2026 02:43 UTC)
Re: Comments Bradley J Lucier (22 Jul 2026 02:59 UTC)

Re: Comments Bradley J Lucier 22 Jul 2026 02:59 UTC

> On Jul 21, 2026, at 10:39 PM, Peter McGoron <xxxxxx@mcgoron.com> wrote:
>
>> To answer your question directly, the Gambit routine for (expt x y) returns results that might have an exact nonzero real or imaginary part
> and an inexact nonzero real or imaginary part in the special case when x
> is negative and y is a fraction with denominator 3 or 6.
> Thank you for the example. I'll look more into it. I assume it's this
> behavior?
>
>    (expt -1 1/3) => 1/2+.8660254037844386i

Yes.

 > (expt -1 1/3)
 1/2+.8660254037844386i
 > (expt -8/27 2/3)
 -2/9+.38490017945975047i

Brad