Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make extracting information about a PARI group less painful #24469

Open
slel opened this issue Jan 4, 2018 · 5 comments
Open

Make extracting information about a PARI group less painful #24469

slel opened this issue Jan 4, 2018 · 5 comments

Comments

@slel
Copy link
Member

slel commented Jan 4, 2018

Requested by John Cremona on sage-devel:

see issue 51 in cypari2.

Upstream: Reported upstream. Developers acknowledge bug.

CC: @JohnCremona @slel

Component: packages: standard

Keywords: PARI group, Galois group

Issue created by migration from https://trac.sagemath.org/ticket/24469

@slel slel added this to the sage-8.2 milestone Jan 4, 2018
@videlec
Copy link
Contributor

videlec commented Jan 4, 2018

comment:1

I think this should be addressed by upstream cypari2. The point is that GP provides shortcut to access some members

$ gp
? K = bnfinit(x^3 - 2);
? bnf = bnfinit(x^3 - 2);
? bnf.nf     /* = bnf[7] */
%3 = [x^3 - 2, [1, 1], -108, 1, ...]
? bnf.clgp   /* = bnf[8][1] */
%4 = [1, [], []]

(these do not exist in the PARI library). The same shortcuts should be available on the Gen type

sage: K = pari.bnfinit('x^3 - 2')
sage: K.nf
Traceback (most recent call last):
...
AttributeError: 'cypari2.gen.Gen' object has no attribute 'nf'

@videlec
Copy link
Contributor

videlec commented Jan 4, 2018

Upstream: Reported upstream. Developers acknowledge bug.

@videlec

This comment has been minimized.

@JohnCremona
Copy link
Member

comment:4

The bnf example is not quite relevant here, is it? The components of the Galois group are not currently accessible by such shortcuts (as far as I know).

@slel
Copy link
Member Author

slel commented May 20, 2019

comment:5

Change milestone to sage-wishlist for a few tickets whose previous milestone is closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants