#19229: Bug in elliptic curve Galois Representation
------------------------------------------+------------------------
       Reporter:  cremona                 |        Owner:
           Type:  defect                  |       Status:  new
       Priority:  major                   |    Milestone:  sage-6.9
      Component:  elliptic curves         |   Resolution:
       Keywords:  Galois representations  |    Merged in:
        Authors:  John Cremona            |    Reviewers:
Report Upstream:  N/A                     |  Work issues:
         Branch:                          |       Commit:
   Dependencies:                          |     Stopgaps:
------------------------------------------+------------------------
Changes (by {'newvalue': u'John Cremona', 'oldvalue': ''}):

 * author:   => John Cremona


Old description:

> {{{
> sage: K.<a> = NumberField(x^2-x+1)
> sage: E = EllipticCurve([a+1,1,1,0,0])
> sage: C = IsogenyClass_EC_NumberField(E)
> ...
> ValueError: 0 is not prime.
> }}}
> is caused by
> {{{
> sage: from sage.schemes.elliptic_curves.isogeny_class import
> possible_isogeny_degrees
> sage: possible_isogeny_degrees(E)
> [0]
> }}}
> and in turn by
> {{{
> sage: EG = E.galois_representation()
> sage: EG.reducible_primes()
> [0]
> }}}
>
> According to the documentation for the last function it should return [0]
> if and only if E has CM, which is does not:
> {{{
> sage: E.has_cm()
> False
> sage: E.j_invariant().is_integral()
> False
> }}}
> (CM curves certainly have integral j-invariant, so you don't need to
> trust the is_cm() method to believe that!)

New description:

 {{{
 sage: K.<a> = NumberField(x^2-x+1)
 sage: E = EllipticCurve([a+1,1,1,0,0])
 sage: C = E.isogeny_class(E)
 ...
 ValueError: 0 is not prime.
 }}}
 is caused by
 {{{
 sage: from sage.schemes.elliptic_curves.isogeny_class import
 possible_isogeny_degrees
 sage: possible_isogeny_degrees(E)
 [0]
 }}}
 and in turn by
 {{{
 sage: EG = E.galois_representation()
 sage: EG.reducible_primes()
 [0]
 }}}

 According to the documentation for the last function it should return [0]
 if and only if E has CM, which is does not:
 {{{
 sage: E.has_cm()
 False
 sage: E.j_invariant().is_integral()
 False
 }}}
 (CM curves certainly have integral j-invariant, so you don't need to trust
 the is_cm() method to believe that!)

--

--
Ticket URL: <http://trac.sagemath.org/ticket/19229#comment:2>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to