Re: comparing finite fields elements with == or != doesn't work?!?!
- To: mathgroup at smc.vnet.net
- Subject: [mg71377] Re: comparing finite fields elements with == or != doesn't work?!?!
- From: "xarnaudx at gmail.com" <xarnaudx at gmail.com>
- Date: Thu, 16 Nov 2006 00:53:10 -0500 (EST)
- References: <ejeulg$1h0$1@smc.vnet.net>
using === and =!= doesn't work either:
<< Algebra`FiniteFields`
F = GF[7];
Print[F[{0}] === F[{7}]];
Print[F[{0}] === 0];
Print[2*F[{7}] === 0];
outputs:
False
False
True