# SageMath code for working with elliptic curve 4.4.10816.1-17.1-c2 # (Note that not all these functions may be available, and some may take a long time to execute.) # Define the base number field: R. = PolynomialRing(QQ); K. = NumberField(R([-1, 10, -9, -2, 1])) # Define the curve: E = EllipticCurve([K([-21/5,28/5,7/5,-3/5]),K([8/5,16/5,-1/5,-1/5]),K([-4/5,22/5,3/5,-2/5]),K([43/5,-34/5,-6/5,4/5]),K([29/5,-62/5,-8/5,7/5])]) # Test whether it is a global minimal model: E.is_global_minimal_model() # Compute the conductor: E.conductor() # Compute the norm of the conductor: E.conductor().norm() # Compute the discriminant: E.discriminant() # Compute the norm of the discriminant: E.discriminant().norm() # Compute the j-invariant: E.j_invariant() # Test for Complex Multiplication: E.has_cm(), E.cm_discriminant() # Compute the Mordell-Weil rank: E.rank() # Compute the generators (of infinite order): gens = E.gens(); gens # Compute the heights of the generators (of infinite order): [P.height() for P in gens] # Compute the regulator: E.regulator_of_points(gens) # Compute the torsion subgroup: T = E.torsion_subgroup(); T.invariants() # Compute the order of the torsion subgroup: T.order() # Compute the generators of the torsion subgroup: T.gens() # Compute the local reduction data at primes of bad reduction: E.local_data()