kummer-degrees

Compute the degree of Kummer extensions
git clone https://git.tronto.net/kummer-degrees
Download | Log | Files | Refs | README | LICENSE

commit 5bf4cde26ce9c3edc0a3f007714b3690f397b286
parent f2cc02f87cc8af2f264ff2e132daf19b4e732a9c
Author: Sebastiano Tronto <sebastiano.tronto@gmail.com>
Date:   Fri, 20 Sep 2019 10:45:36 +0200

New documentation

Diffstat:
MREADME.md | 19++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md @@ -30,7 +30,16 @@ generators can slow the script as well. by elements of magnitude 10^6; higher ranks are feasible as well with smaller generators. -It contains the following useful functions: + +## KummerDegree( G, M, N ) + +Returns the degree of the Kummer extension Q_{M,N}. Again, G is given simply as a list of generators and it may contain torsion. + +Example: +``` +sage: KummerDegree([-36,12,-1],120,24) +4608 +``` ## TotalKummerFailure( G ) @@ -65,12 +74,4 @@ The following table shows the total failure of Kummer degrees if the quotient M/ ``` -## KummerDegree( G, M, N ) -Returns the degree of the Kummer extension Q_{M,N}. Again, G is given simply as a list of generators and it may contain torsion. - -Example: -``` -sage: KummerDegree([-36,12,-1],120,24) -4608 -```