Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 11 years ago

Blackadder gravatar image

Tuples or for loops

Hi everybody, I would like to compute the L-function of an elliptic curve of the form y2=x3d2x for multiple values of d at s=1. I was hoping to use an n-tuple

d=(1,3,5,7,...,n)

with the hope that I could then do

E=EllipticCurve([0,0,0,-(d^2),0])
L = E.lseries().dokchitser()
L(1)

such that at every stage the data would be in a vector/n-tuple form, but this is not possible. Does anyone know how I can make this method work? With a for-loop perhaps? Thanks in advance for your help!

click to hide/show revision 2
retagged

updated 10 years ago

FrédéricC gravatar image

Tuples or for loops

Hi everybody, I would like to compute the L-function of an elliptic curve of the form y2=x3d2x for multiple values of d at s=1. I was hoping to use an n-tuple

d=(1,3,5,7,...,n)

with the hope that I could then do

E=EllipticCurve([0,0,0,-(d^2),0])
L = E.lseries().dokchitser()
L(1)

such that at every stage the data would be in a vector/n-tuple form, but this is not possible. Does anyone know how I can make this method work? With a for-loop perhaps? Thanks in advance for your help!