Ticket #691 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

[with patch] .coefficients() for EisensteinSeries does not return requested coefficients

Reported by: mhansen Owned by: mhansen
Priority: major Milestone: sage-2.8.5
Component: modular forms Keywords:
Cc: Author(s):
Report Upstream: Reviewer(s):
Merged in: Work issues:

Description

sage: e = G.gen()
sage: E = EisensteinForms(e, 3)
sage: v = E.eisenstein_series()
sage: f = v[0]
sage: f
15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11 + q + (4*zeta10 + 1)*q^2 + (-9*zeta10^3 + 1)*q^3 + (16*zeta10^2 + 4*zeta10 + 1)*q^4 + (25*zeta10^3 - 25*zeta10^2 + 25*zeta10 - 24)*q^5 + O(q^6)
sage: f.coefficients([0,1,2,3,4])

[15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11,
 1,
 4*zeta10 + 1,
 -9*zeta10^3 + 1,
 16*zeta10^2 + 4*zeta10 + 1]
sage: f.coefficients([0,1,2,3,4])
[15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11]

Attachments

691.patch Download (1 bytes) - added by mhansen 3 years ago.
691.2.patch Download (3.9 KB) - added by mhansen 3 years ago.

Change History

Changed 3 years ago by mhansen

  • owner changed from was to mhansen

Changed 3 years ago by mhansen

Patch attached.

Changed 3 years ago by mhansen

Actually, there is a problem with f._compute. Ignore the above patch for now.

Changed 3 years ago by mhansen

Changed 3 years ago by mhansen

Changed 3 years ago by mhansen

Patch attached which fixes the issues.

Changed 3 years ago by mabshoff

  • summary changed from .coefficients() for EisensteinSeries does not return requested coefficients to [with patch] .coefficients() for EisensteinSeries does not return requested coefficients

Changed 3 years ago by was

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.