Bill Allombert on Fri, 13 Dec 2024 18:40:05 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
- To: pari-users@pari.math.u-bordeaux.fr
- Subject: Re: ellperiods
- From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Date: Fri, 13 Dec 2024 18:39:58 +0100
- Delivery-date: Fri, 13 Dec 2024 18:40:05 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=math.u-bordeaux.fr; s=2022; t=1734111602; bh=bbqDCxiVMTimGKj97eWhzQi1lsOUZmMAuQtB8xr4ojQ=; h=Date:From:To:Subject:References:In-Reply-To:From; b=EDLxFYCNaQTu9BnpWOqFKpRrGdbyzJISfa25ePNhD2LI2oCMTGEjcIzUzlSA+B2Rm HsIM6DQ5GfNPaQhRO4tyC407qm8uxekceJnkbv1trLrQrOGiadx7hxMSFe0/CnHhca Gwunjb6ffjANhgPr0IQo/ZFSqFnFQOQYoc02CCgZkG3ylvCcSBKT+6QRNrwL364fZw Tc7QeoAssoSixg7fLFEWqD7S2bp45QzLisyVCqy2/pY9ebFREaJ7uAgB1z8KaKc+8b Cfoffmba5H2PU93aDFb/DI0BNXwWttQhbAOEgPd9xV/TUaCOGarJyNvL+cDj6ecLsW k6Wl2U0T4piR8aXSTFqtxXGOQ0DYaWKx6ZmT1oKHdqzo4fqn8HM+iv2l1q1+5OBGCy dLW+Kt9T8F1H26fzbOg6WJApP1Qqhg9WNn8PWEKYIC6kbRSGBYwnvRvfVah8Y+gH0y sY6V1iSp9BxFbX1rhObz2VscuLsX8NWGUVvkADKrHcS+vwQF4mRE37eiQbqMiShOIN mtpLFGF78xxL1VOnVQuPKIfC+yL8BRikKPTCmbLNww647OizQ8XOaRGWgW+oPc3t4C xIxmEDGJBk26o5qlwd0DqOBa5fW3hZT9MaZTfTJlgy+6oLNI63WynWOZDbuFPXW7fM eeEuYrk05P2OBIONg8Ln1Pgg=
- In-reply-to: <CAD0p0K59kXfuDUCTrmeNt1fNBgY6H27AVpdywaP=e7eDKH3isw@mail.gmail.com>
- Mail-followup-to: pari-users@pari.math.u-bordeaux.fr
- References: <CAD0p0K59kXfuDUCTrmeNt1fNBgY6H27AVpdywaP=e7eDKH3isw@mail.gmail.com>
On Fri, Dec 13, 2024 at 04:00:06PM +0000, John Cremona wrote:
> It is not clear to me what ellperiods(e) returns when e is an ellinit for a
> curve defined over a number field.
ellperiods assume your curve is defined over R or C.
> Also, if I want the period lattice for
> all the embeddings of the fields into R or C, how would I do that?
Just use E.omega.
Otherwise, you would need to apply all the embeddings and then use ellperiods
for each of them.
> I am trying to see how many of the quantities appearing in the BSD
> conjecture can be computed in GP, over a number field.
Assuming the rank and generators are know, everything except the
Tate-Shafarevich group, including the root number.
> I am assuming
> that we know generators somehow (ellgenerators() is not available), and
> something to replace ellL1() so that we can get something like ellbsd().
Just use lfun(E,1)
> I may have missed functions which are already there for curves over number
> fields -- if so, please tell me.
May I suggest this tutorial ?
https://pari.math.u-bordeaux.fr/Events/PARI2018b/talks/elliptic.pdf
especially the last page.
Cheers,
Bill.
- References:
- ellperiods
- From: John Cremona <john.cremona@gmail.com>