-
This is a problem:
```
sage: AbelianGroup(1, [1], names='e')
Trivial Abelian Group
sage: AbelianGroup(1, [1], names='e').list()
[]
```
The handling of 1's in the list of element orders is a proble…
-
Hermite Normal form is the analogue of echelon form over the integers.
It's crucial for almost all efficient computations with Z-modules (infinite
abelian groups, finite abelian groups, lattices, m…
-
Paste this code into a Sage session:
```
E = EllipticCurve('389a')
for p in prime_range(10000):
if p != 389:
try:
G = E.change_ring(GF(p)).abelian_group()
except Except…
-
Why SAGE doesn't support the computation of normal subgroups has been raised on sage-support. I needed it myself for a research problem so, added it. While constructing an example for the docstring,…
-
William, my student noticed some slow performance with elliptic curves
group law. I think there was a huge overhead in duplication:
sage: E = EllipticCurve([GF(101)(1),3])
sage: P = E([-1,1,1])
…
-
E.torsion_subgroup() returns an abstract group. There is no way to get hold of the torsion points (without some hacking).
```
---------- Forwarded message ----------
Date: Mon, 25 Sep 2006 08:00:43…