superelliptic_alpha; kxi jako polynomial

This commit is contained in:
jgarnek 2022-03-07 11:47:43 +01:00
parent 9f0ce1fa5c
commit 9794e9e45b
2 changed files with 1994 additions and 6 deletions

View File

@ -2,7 +2,7 @@
"cells": [ "cells": [
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 21, "execution_count": 1,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -560,7 +560,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 28, "execution_count": 2,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
@ -918,20 +918,21 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 12, "execution_count": 7,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"[(1/y) dx, (x/y) dx, (x^2/y) dx, (x^3/y) dx]\n" "[((1/y) dx, 0, (1/y) dx), ((x/y) dx, 2/x*y, (1/(x*y)) dx)]\n"
] ]
} }
], ],
"source": [ "source": [
"C = superelliptic(x^9+x^8+x, 2, 11)\n", "R.<x> = PolynomialRing(GF(13))\n",
"print(C.basis_holomorphic_differentials)" "C = superelliptic(x^3+x, 2, 13)\n",
"print(C.basis_de_rham)"
] ]
}, },
{ {
@ -1885,6 +1886,38 @@
], ],
"source": [] "source": []
}, },
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Current Time = 18:56:38\n",
"[1, 2, 3, 4, 5, 6, 7, 8, 9]\n",
"Current Time = 18:57:11\n"
]
}
],
"source": [
"now = datetime.now()\n",
"\n",
"current_time = now.strftime(\"%H:%M:%S\")\n",
"print(\"Current Time =\", current_time)\n",
"\n",
"p = 17\n",
"Rx.<x> = PolynomialRing(GF(p))\n",
"C = superelliptic(x^19+x^8+x, 2, p)\n",
"print(C.final_type())\n",
"\n",
"now = datetime.now()\n",
"\n",
"current_time = now.strftime(\"%H:%M:%S\")\n",
"print(\"Current Time =\", current_time)"
]
},
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": null, "execution_count": null,

1955
superelliptic_alpha.ipynb Normal file

File diff suppressed because it is too large Load Diff