passagemath-singular 10.6.31rc3__cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of passagemath-singular might be problematic. Click here for more details.
- PySingular.cpython-314-x86_64-linux-gnu.so +0 -0
- passagemath_singular-10.6.31rc3.dist-info/METADATA +183 -0
- passagemath_singular-10.6.31rc3.dist-info/RECORD +491 -0
- passagemath_singular-10.6.31rc3.dist-info/WHEEL +6 -0
- passagemath_singular-10.6.31rc3.dist-info/top_level.txt +3 -0
- passagemath_singular.libs/libSingular-4-20aec911.4.1.so +0 -0
- passagemath_singular.libs/libcddgmp-21acf0c6.so.0.1.3 +0 -0
- passagemath_singular.libs/libfactory-4-fcee31da.4.1.so +0 -0
- passagemath_singular.libs/libflint-66e12231.so.21.0.0 +0 -0
- passagemath_singular.libs/libgf2x-a4cdec90.so.3.0.0 +0 -0
- passagemath_singular.libs/libgfortran-83c28eba.so.5.0.0 +0 -0
- passagemath_singular.libs/libgmp-6e109695.so.10.5.0 +0 -0
- passagemath_singular.libs/libgsl-cda90e79.so.28.0.0 +0 -0
- passagemath_singular.libs/libmpfr-82690d50.so.6.2.1 +0 -0
- passagemath_singular.libs/libntl-e6f0d543.so.44.0.1 +0 -0
- passagemath_singular.libs/libomalloc-0-5c9e866e.9.6.so +0 -0
- passagemath_singular.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
- passagemath_singular.libs/libpolys-4-5c0a87e0.4.1.so +0 -0
- passagemath_singular.libs/libquadmath-2284e583.so.0.0.0 +0 -0
- passagemath_singular.libs/libreadline-ea270e21.so.8.2 +0 -0
- passagemath_singular.libs/libsingular_resources-4-a1aafc6d.4.1.so +0 -0
- passagemath_singular.libs/libtinfo-ceb117d9.so.6.3 +0 -0
- sage/algebras/all__sagemath_singular.py +3 -0
- sage/algebras/fusion_rings/all.py +19 -0
- sage/algebras/fusion_rings/f_matrix.py +2448 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pxd +5 -0
- sage/algebras/fusion_rings/fast_parallel_fmats_methods.pyx +538 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pxd +3 -0
- sage/algebras/fusion_rings/fast_parallel_fusion_ring_braid_repn.pyx +331 -0
- sage/algebras/fusion_rings/fusion_double.py +899 -0
- sage/algebras/fusion_rings/fusion_ring.py +1580 -0
- sage/algebras/fusion_rings/poly_tup_engine.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/poly_tup_engine.pxd +24 -0
- sage/algebras/fusion_rings/poly_tup_engine.pyx +579 -0
- sage/algebras/fusion_rings/shm_managers.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/fusion_rings/shm_managers.pxd +24 -0
- sage/algebras/fusion_rings/shm_managers.pyx +780 -0
- sage/algebras/letterplace/all.py +1 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pxd +18 -0
- sage/algebras/letterplace/free_algebra_element_letterplace.pyx +755 -0
- sage/algebras/letterplace/free_algebra_letterplace.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/letterplace/free_algebra_letterplace.pxd +35 -0
- sage/algebras/letterplace/free_algebra_letterplace.pyx +914 -0
- sage/algebras/letterplace/letterplace_ideal.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/letterplace/letterplace_ideal.pyx +408 -0
- sage/algebras/quatalg/all.py +2 -0
- sage/algebras/quatalg/quaternion_algebra.py +4778 -0
- sage/algebras/quatalg/quaternion_algebra_cython.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_cython.pyx +261 -0
- sage/algebras/quatalg/quaternion_algebra_element.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/algebras/quatalg/quaternion_algebra_element.pxd +29 -0
- sage/algebras/quatalg/quaternion_algebra_element.pyx +2176 -0
- sage/all__sagemath_singular.py +11 -0
- sage/ext_data/all__sagemath_singular.py +1 -0
- sage/ext_data/singular/function_field/core.lib +98 -0
- sage/interfaces/all__sagemath_singular.py +1 -0
- sage/interfaces/singular.py +2835 -0
- sage/libs/all__sagemath_singular.py +1 -0
- sage/libs/singular/__init__.py +1 -0
- sage/libs/singular/decl.pxd +1168 -0
- sage/libs/singular/function.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/function.pxd +87 -0
- sage/libs/singular/function.pyx +1901 -0
- sage/libs/singular/function_factory.py +61 -0
- sage/libs/singular/groebner_strategy.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/groebner_strategy.pxd +22 -0
- sage/libs/singular/groebner_strategy.pyx +582 -0
- sage/libs/singular/option.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/option.pyx +671 -0
- sage/libs/singular/polynomial.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/polynomial.pxd +39 -0
- sage/libs/singular/polynomial.pyx +661 -0
- sage/libs/singular/ring.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/ring.pxd +58 -0
- sage/libs/singular/ring.pyx +893 -0
- sage/libs/singular/singular.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/libs/singular/singular.pxd +72 -0
- sage/libs/singular/singular.pyx +1944 -0
- sage/libs/singular/standard_options.py +145 -0
- sage/matrix/all__sagemath_singular.py +1 -0
- sage/matrix/matrix_mpolynomial_dense.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/matrix/matrix_mpolynomial_dense.pxd +7 -0
- sage/matrix/matrix_mpolynomial_dense.pyx +615 -0
- sage/rings/all__sagemath_singular.py +1 -0
- sage/rings/function_field/all__sagemath_singular.py +1 -0
- sage/rings/function_field/derivations_polymod.py +911 -0
- sage/rings/function_field/element_polymod.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/rings/function_field/element_polymod.pyx +406 -0
- sage/rings/function_field/function_field_polymod.py +2611 -0
- sage/rings/function_field/ideal_polymod.py +1775 -0
- sage/rings/function_field/order_polymod.py +1475 -0
- sage/rings/function_field/place_polymod.py +681 -0
- sage/rings/polynomial/all__sagemath_singular.py +1 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pxd +5 -0
- sage/rings/polynomial/multi_polynomial_ideal_libsingular.pyx +339 -0
- sage/rings/polynomial/multi_polynomial_libsingular.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pxd +30 -0
- sage/rings/polynomial/multi_polynomial_libsingular.pyx +6277 -0
- sage/rings/polynomial/plural.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/rings/polynomial/plural.pxd +48 -0
- sage/rings/polynomial/plural.pyx +3171 -0
- sage/symbolic/all__sagemath_singular.py +1 -0
- sage/symbolic/comparison_impl.pxi +428 -0
- sage/symbolic/constants_c_impl.pxi +178 -0
- sage/symbolic/expression.cpython-314-x86_64-linux-gnu.so +0 -0
- sage/symbolic/expression.pxd +7 -0
- sage/symbolic/expression.pyx +14200 -0
- sage/symbolic/getitem_impl.pxi +202 -0
- sage/symbolic/pynac.pxi +572 -0
- sage/symbolic/pynac_constant_impl.pxi +133 -0
- sage/symbolic/pynac_function_impl.pxi +206 -0
- sage/symbolic/pynac_impl.pxi +2576 -0
- sage/symbolic/pynac_wrap.h +124 -0
- sage/symbolic/series_impl.pxi +272 -0
- sage/symbolic/substitution_map_impl.pxi +94 -0
- sage_wheels/bin/ESingular +0 -0
- sage_wheels/bin/Singular +0 -0
- sage_wheels/bin/TSingular +0 -0
- sage_wheels/lib/singular/MOD/cohomo.la +41 -0
- sage_wheels/lib/singular/MOD/cohomo.so +0 -0
- sage_wheels/lib/singular/MOD/customstd.la +41 -0
- sage_wheels/lib/singular/MOD/customstd.so +0 -0
- sage_wheels/lib/singular/MOD/freealgebra.la +41 -0
- sage_wheels/lib/singular/MOD/freealgebra.so +0 -0
- sage_wheels/lib/singular/MOD/gfanlib.la +41 -0
- sage_wheels/lib/singular/MOD/gfanlib.so +0 -0
- sage_wheels/lib/singular/MOD/gitfan.la +41 -0
- sage_wheels/lib/singular/MOD/gitfan.so +0 -0
- sage_wheels/lib/singular/MOD/interval.la +41 -0
- sage_wheels/lib/singular/MOD/interval.so +0 -0
- sage_wheels/lib/singular/MOD/loctriv.la +41 -0
- sage_wheels/lib/singular/MOD/loctriv.so +0 -0
- sage_wheels/lib/singular/MOD/machinelearning.la +41 -0
- sage_wheels/lib/singular/MOD/machinelearning.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldGeneral.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldIndep.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldQ.so +0 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.la +41 -0
- sage_wheels/lib/singular/MOD/p_Procs_FieldZp.so +0 -0
- sage_wheels/lib/singular/MOD/partialgb.la +41 -0
- sage_wheels/lib/singular/MOD/partialgb.so +0 -0
- sage_wheels/lib/singular/MOD/pyobject.la +41 -0
- sage_wheels/lib/singular/MOD/pyobject.so +0 -0
- sage_wheels/lib/singular/MOD/singmathic.la +41 -0
- sage_wheels/lib/singular/MOD/singmathic.so +0 -0
- sage_wheels/lib/singular/MOD/sispasm.la +41 -0
- sage_wheels/lib/singular/MOD/sispasm.so +0 -0
- sage_wheels/lib/singular/MOD/subsets.la +41 -0
- sage_wheels/lib/singular/MOD/subsets.so +0 -0
- sage_wheels/lib/singular/MOD/systhreads.la +41 -0
- sage_wheels/lib/singular/MOD/systhreads.so +0 -0
- sage_wheels/lib/singular/MOD/syzextra.la +41 -0
- sage_wheels/lib/singular/MOD/syzextra.so +0 -0
- sage_wheels/libexec/singular/MOD/change_cost +0 -0
- sage_wheels/libexec/singular/MOD/singularsurf +11 -0
- sage_wheels/libexec/singular/MOD/singularsurf_jupyter +9 -0
- sage_wheels/libexec/singular/MOD/singularsurf_win +10 -0
- sage_wheels/libexec/singular/MOD/solve_IP +0 -0
- sage_wheels/libexec/singular/MOD/surfex +16 -0
- sage_wheels/libexec/singular/MOD/toric_ideal +0 -0
- sage_wheels/share/factory/gftables/10201 +342 -0
- sage_wheels/share/factory/gftables/1024 +37 -0
- sage_wheels/share/factory/gftables/10609 +356 -0
- sage_wheels/share/factory/gftables/11449 +384 -0
- sage_wheels/share/factory/gftables/11881 +398 -0
- sage_wheels/share/factory/gftables/121 +6 -0
- sage_wheels/share/factory/gftables/12167 +408 -0
- sage_wheels/share/factory/gftables/125 +7 -0
- sage_wheels/share/factory/gftables/12769 +428 -0
- sage_wheels/share/factory/gftables/128 +7 -0
- sage_wheels/share/factory/gftables/1331 +47 -0
- sage_wheels/share/factory/gftables/1369 +48 -0
- sage_wheels/share/factory/gftables/14641 +490 -0
- sage_wheels/share/factory/gftables/15625 +523 -0
- sage_wheels/share/factory/gftables/16 +3 -0
- sage_wheels/share/factory/gftables/16129 +540 -0
- sage_wheels/share/factory/gftables/16384 +549 -0
- sage_wheels/share/factory/gftables/16807 +563 -0
- sage_wheels/share/factory/gftables/1681 +58 -0
- sage_wheels/share/factory/gftables/169 +8 -0
- sage_wheels/share/factory/gftables/17161 +574 -0
- sage_wheels/share/factory/gftables/1849 +64 -0
- sage_wheels/share/factory/gftables/18769 +628 -0
- sage_wheels/share/factory/gftables/19321 +646 -0
- sage_wheels/share/factory/gftables/19683 +659 -0
- sage_wheels/share/factory/gftables/2048 +71 -0
- sage_wheels/share/factory/gftables/2187 +75 -0
- sage_wheels/share/factory/gftables/2197 +76 -0
- sage_wheels/share/factory/gftables/2209 +76 -0
- sage_wheels/share/factory/gftables/22201 +742 -0
- sage_wheels/share/factory/gftables/22801 +762 -0
- sage_wheels/share/factory/gftables/2401 +82 -0
- sage_wheels/share/factory/gftables/243 +11 -0
- sage_wheels/share/factory/gftables/24389 +815 -0
- sage_wheels/share/factory/gftables/24649 +824 -0
- sage_wheels/share/factory/gftables/25 +3 -0
- sage_wheels/share/factory/gftables/256 +11 -0
- sage_wheels/share/factory/gftables/26569 +888 -0
- sage_wheels/share/factory/gftables/27 +3 -0
- sage_wheels/share/factory/gftables/27889 +932 -0
- sage_wheels/share/factory/gftables/2809 +96 -0
- sage_wheels/share/factory/gftables/28561 +954 -0
- sage_wheels/share/factory/gftables/289 +12 -0
- sage_wheels/share/factory/gftables/29791 +995 -0
- sage_wheels/share/factory/gftables/29929 +1000 -0
- sage_wheels/share/factory/gftables/3125 +107 -0
- sage_wheels/share/factory/gftables/32 +4 -0
- sage_wheels/share/factory/gftables/32041 +1070 -0
- sage_wheels/share/factory/gftables/32761 +1094 -0
- sage_wheels/share/factory/gftables/32768 +1095 -0
- sage_wheels/share/factory/gftables/343 +14 -0
- sage_wheels/share/factory/gftables/3481 +118 -0
- sage_wheels/share/factory/gftables/361 +14 -0
- sage_wheels/share/factory/gftables/36481 +1218 -0
- sage_wheels/share/factory/gftables/3721 +126 -0
- sage_wheels/share/factory/gftables/37249 +1244 -0
- sage_wheels/share/factory/gftables/38809 +1296 -0
- sage_wheels/share/factory/gftables/39601 +1322 -0
- sage_wheels/share/factory/gftables/4 +3 -0
- sage_wheels/share/factory/gftables/4096 +139 -0
- sage_wheels/share/factory/gftables/44521 +1486 -0
- sage_wheels/share/factory/gftables/4489 +152 -0
- sage_wheels/share/factory/gftables/49 +4 -0
- sage_wheels/share/factory/gftables/4913 +166 -0
- sage_wheels/share/factory/gftables/49729 +1660 -0
- sage_wheels/share/factory/gftables/5041 +170 -0
- sage_wheels/share/factory/gftables/50653 +1691 -0
- sage_wheels/share/factory/gftables/512 +20 -0
- sage_wheels/share/factory/gftables/51529 +1720 -0
- sage_wheels/share/factory/gftables/52441 +1750 -0
- sage_wheels/share/factory/gftables/529 +20 -0
- sage_wheels/share/factory/gftables/5329 +180 -0
- sage_wheels/share/factory/gftables/54289 +1812 -0
- sage_wheels/share/factory/gftables/57121 +1906 -0
- sage_wheels/share/factory/gftables/58081 +1938 -0
- sage_wheels/share/factory/gftables/59049 +1971 -0
- sage_wheels/share/factory/gftables/6241 +210 -0
- sage_wheels/share/factory/gftables/625 +23 -0
- sage_wheels/share/factory/gftables/63001 +2102 -0
- sage_wheels/share/factory/gftables/64 +5 -0
- sage_wheels/share/factory/gftables/6561 +221 -0
- sage_wheels/share/factory/gftables/6859 +231 -0
- sage_wheels/share/factory/gftables/6889 +232 -0
- sage_wheels/share/factory/gftables/729 +27 -0
- sage_wheels/share/factory/gftables/7921 +266 -0
- sage_wheels/share/factory/gftables/8 +3 -0
- sage_wheels/share/factory/gftables/81 +5 -0
- sage_wheels/share/factory/gftables/8192 +276 -0
- sage_wheels/share/factory/gftables/841 +30 -0
- sage_wheels/share/factory/gftables/9 +3 -0
- sage_wheels/share/factory/gftables/9409 +316 -0
- sage_wheels/share/factory/gftables/961 +34 -0
- sage_wheels/share/info/singular.info +191898 -0
- sage_wheels/share/singular/LIB/GND.lib +1359 -0
- sage_wheels/share/singular/LIB/JMBTest.lib +976 -0
- sage_wheels/share/singular/LIB/JMSConst.lib +1363 -0
- sage_wheels/share/singular/LIB/KVequiv.lib +699 -0
- sage_wheels/share/singular/LIB/SingularityDBM.lib +491 -0
- sage_wheels/share/singular/LIB/VecField.lib +1542 -0
- sage_wheels/share/singular/LIB/absfact.lib +959 -0
- sage_wheels/share/singular/LIB/ainvar.lib +730 -0
- sage_wheels/share/singular/LIB/aksaka.lib +419 -0
- sage_wheels/share/singular/LIB/alexpoly.lib +2542 -0
- sage_wheels/share/singular/LIB/algebra.lib +1193 -0
- sage_wheels/share/singular/LIB/all.lib +136 -0
- sage_wheels/share/singular/LIB/arcpoint.lib +514 -0
- sage_wheels/share/singular/LIB/arnold.lib +4553 -0
- sage_wheels/share/singular/LIB/arnoldclassify.lib +2058 -0
- sage_wheels/share/singular/LIB/arr.lib +3486 -0
- sage_wheels/share/singular/LIB/assprimeszerodim.lib +755 -0
- sage_wheels/share/singular/LIB/autgradalg.lib +3361 -0
- sage_wheels/share/singular/LIB/bfun.lib +1964 -0
- sage_wheels/share/singular/LIB/bimodules.lib +774 -0
- sage_wheels/share/singular/LIB/brillnoether.lib +226 -0
- sage_wheels/share/singular/LIB/brnoeth.lib +5017 -0
- sage_wheels/share/singular/LIB/central.lib +2169 -0
- sage_wheels/share/singular/LIB/chern.lib +4162 -0
- sage_wheels/share/singular/LIB/cimonom.lib +571 -0
- sage_wheels/share/singular/LIB/cisimplicial.lib +1835 -0
- sage_wheels/share/singular/LIB/classify.lib +3239 -0
- sage_wheels/share/singular/LIB/classify2.lib +1462 -0
- sage_wheels/share/singular/LIB/classifyMapGerms.lib +1515 -0
- sage_wheels/share/singular/LIB/classify_aeq.lib +3253 -0
- sage_wheels/share/singular/LIB/classifyceq.lib +2092 -0
- sage_wheels/share/singular/LIB/classifyci.lib +1133 -0
- sage_wheels/share/singular/LIB/combinat.lib +91 -0
- sage_wheels/share/singular/LIB/compregb.lib +276 -0
- sage_wheels/share/singular/LIB/control.lib +1636 -0
- sage_wheels/share/singular/LIB/crypto.lib +3795 -0
- sage_wheels/share/singular/LIB/curveInv.lib +667 -0
- sage_wheels/share/singular/LIB/curvepar.lib +1817 -0
- sage_wheels/share/singular/LIB/customstd.lib +100 -0
- sage_wheels/share/singular/LIB/deRham.lib +5979 -0
- sage_wheels/share/singular/LIB/decodegb.lib +2134 -0
- sage_wheels/share/singular/LIB/decomp.lib +1655 -0
- sage_wheels/share/singular/LIB/deflation.lib +872 -0
- sage_wheels/share/singular/LIB/deform.lib +925 -0
- sage_wheels/share/singular/LIB/difform.lib +3055 -0
- sage_wheels/share/singular/LIB/divisors.lib +750 -0
- sage_wheels/share/singular/LIB/dmod.lib +5817 -0
- sage_wheels/share/singular/LIB/dmodapp.lib +3269 -0
- sage_wheels/share/singular/LIB/dmodideal.lib +1211 -0
- sage_wheels/share/singular/LIB/dmodloc.lib +2645 -0
- sage_wheels/share/singular/LIB/dmodvar.lib +818 -0
- sage_wheels/share/singular/LIB/dummy.lib +17 -0
- sage_wheels/share/singular/LIB/elim.lib +1009 -0
- sage_wheels/share/singular/LIB/ellipticcovers.lib +548 -0
- sage_wheels/share/singular/LIB/enumpoints.lib +146 -0
- sage_wheels/share/singular/LIB/equising.lib +2127 -0
- sage_wheels/share/singular/LIB/ffmodstd.lib +2384 -0
- sage_wheels/share/singular/LIB/ffsolve.lib +1289 -0
- sage_wheels/share/singular/LIB/findifs.lib +778 -0
- sage_wheels/share/singular/LIB/finitediff.lib +1768 -0
- sage_wheels/share/singular/LIB/finvar.lib +7989 -0
- sage_wheels/share/singular/LIB/fpadim.lib +2429 -0
- sage_wheels/share/singular/LIB/fpalgebras.lib +1666 -0
- sage_wheels/share/singular/LIB/fpaprops.lib +1462 -0
- sage_wheels/share/singular/LIB/freegb.lib +3853 -0
- sage_wheels/share/singular/LIB/general.lib +1350 -0
- sage_wheels/share/singular/LIB/gfan.lib +1768 -0
- sage_wheels/share/singular/LIB/gitfan.lib +3130 -0
- sage_wheels/share/singular/LIB/gkdim.lib +99 -0
- sage_wheels/share/singular/LIB/gmspoly.lib +589 -0
- sage_wheels/share/singular/LIB/gmssing.lib +1739 -0
- sage_wheels/share/singular/LIB/goettsche.lib +909 -0
- sage_wheels/share/singular/LIB/graal.lib +1366 -0
- sage_wheels/share/singular/LIB/gradedModules.lib +2541 -0
- sage_wheels/share/singular/LIB/graphics.lib +360 -0
- sage_wheels/share/singular/LIB/grobcov.lib +7706 -0
- sage_wheels/share/singular/LIB/groups.lib +1123 -0
- sage_wheels/share/singular/LIB/grwalk.lib +507 -0
- sage_wheels/share/singular/LIB/hdepth.lib +194 -0
- sage_wheels/share/singular/LIB/help.cnf +57 -0
- sage_wheels/share/singular/LIB/hess.lib +1946 -0
- sage_wheels/share/singular/LIB/hnoether.lib +4292 -0
- sage_wheels/share/singular/LIB/hodge.lib +400 -0
- sage_wheels/share/singular/LIB/homolog.lib +1965 -0
- sage_wheels/share/singular/LIB/hyperel.lib +975 -0
- sage_wheels/share/singular/LIB/inout.lib +679 -0
- sage_wheels/share/singular/LIB/integralbasis.lib +6224 -0
- sage_wheels/share/singular/LIB/interval.lib +1418 -0
- sage_wheels/share/singular/LIB/intprog.lib +778 -0
- sage_wheels/share/singular/LIB/invar.lib +443 -0
- sage_wheels/share/singular/LIB/involut.lib +980 -0
- sage_wheels/share/singular/LIB/jacobson.lib +1215 -0
- sage_wheels/share/singular/LIB/kskernel.lib +534 -0
- sage_wheels/share/singular/LIB/latex.lib +3146 -0
- sage_wheels/share/singular/LIB/lejeune.lib +651 -0
- sage_wheels/share/singular/LIB/linalg.lib +2040 -0
- sage_wheels/share/singular/LIB/locnormal.lib +212 -0
- sage_wheels/share/singular/LIB/lrcalc.lib +526 -0
- sage_wheels/share/singular/LIB/makedbm.lib +294 -0
- sage_wheels/share/singular/LIB/mathml.lib +813 -0
- sage_wheels/share/singular/LIB/matrix.lib +1372 -0
- sage_wheels/share/singular/LIB/maxlike.lib +1132 -0
- sage_wheels/share/singular/LIB/methods.lib +212 -0
- sage_wheels/share/singular/LIB/moddiq.lib +322 -0
- sage_wheels/share/singular/LIB/modfinduni.lib +181 -0
- sage_wheels/share/singular/LIB/modnormal.lib +218 -0
- sage_wheels/share/singular/LIB/modprimdec.lib +1278 -0
- sage_wheels/share/singular/LIB/modquotient.lib +269 -0
- sage_wheels/share/singular/LIB/modstd.lib +1024 -0
- sage_wheels/share/singular/LIB/modular.lib +545 -0
- sage_wheels/share/singular/LIB/modules.lib +2561 -0
- sage_wheels/share/singular/LIB/modwalk.lib +609 -0
- sage_wheels/share/singular/LIB/mondromy.lib +1016 -0
- sage_wheels/share/singular/LIB/monomialideal.lib +3851 -0
- sage_wheels/share/singular/LIB/mprimdec.lib +2353 -0
- sage_wheels/share/singular/LIB/mregular.lib +1863 -0
- sage_wheels/share/singular/LIB/multigrading.lib +5629 -0
- sage_wheels/share/singular/LIB/ncHilb.lib +777 -0
- sage_wheels/share/singular/LIB/ncModslimgb.lib +791 -0
- sage_wheels/share/singular/LIB/ncalg.lib +16311 -0
- sage_wheels/share/singular/LIB/ncall.lib +31 -0
- sage_wheels/share/singular/LIB/ncdecomp.lib +468 -0
- sage_wheels/share/singular/LIB/ncfactor.lib +13371 -0
- sage_wheels/share/singular/LIB/ncfrac.lib +1023 -0
- sage_wheels/share/singular/LIB/nchilbert.lib +448 -0
- sage_wheels/share/singular/LIB/nchomolog.lib +759 -0
- sage_wheels/share/singular/LIB/ncloc.lib +361 -0
- sage_wheels/share/singular/LIB/ncpreim.lib +795 -0
- sage_wheels/share/singular/LIB/ncrat.lib +2849 -0
- sage_wheels/share/singular/LIB/nctools.lib +1887 -0
- sage_wheels/share/singular/LIB/nets.lib +1456 -0
- sage_wheels/share/singular/LIB/nfmodstd.lib +1000 -0
- sage_wheels/share/singular/LIB/nfmodsyz.lib +732 -0
- sage_wheels/share/singular/LIB/noether.lib +1106 -0
- sage_wheels/share/singular/LIB/normal.lib +8700 -0
- sage_wheels/share/singular/LIB/normaliz.lib +2226 -0
- sage_wheels/share/singular/LIB/ntsolve.lib +362 -0
- sage_wheels/share/singular/LIB/numerAlg.lib +560 -0
- sage_wheels/share/singular/LIB/numerDecom.lib +2261 -0
- sage_wheels/share/singular/LIB/olga.lib +1933 -0
- sage_wheels/share/singular/LIB/orbitparam.lib +351 -0
- sage_wheels/share/singular/LIB/parallel.lib +319 -0
- sage_wheels/share/singular/LIB/paraplanecurves.lib +3110 -0
- sage_wheels/share/singular/LIB/perron.lib +202 -0
- sage_wheels/share/singular/LIB/pfd.lib +2223 -0
- sage_wheels/share/singular/LIB/phindex.lib +642 -0
- sage_wheels/share/singular/LIB/pointid.lib +673 -0
- sage_wheels/share/singular/LIB/polybori.lib +1430 -0
- sage_wheels/share/singular/LIB/polyclass.lib +525 -0
- sage_wheels/share/singular/LIB/polylib.lib +1174 -0
- sage_wheels/share/singular/LIB/polymake.lib +1902 -0
- sage_wheels/share/singular/LIB/presolve.lib +1533 -0
- sage_wheels/share/singular/LIB/primdec.lib +9576 -0
- sage_wheels/share/singular/LIB/primdecint.lib +1782 -0
- sage_wheels/share/singular/LIB/primitiv.lib +401 -0
- sage_wheels/share/singular/LIB/puiseuxexpansions.lib +1631 -0
- sage_wheels/share/singular/LIB/purityfiltration.lib +960 -0
- sage_wheels/share/singular/LIB/qhmoduli.lib +1561 -0
- sage_wheels/share/singular/LIB/qmatrix.lib +293 -0
- sage_wheels/share/singular/LIB/random.lib +455 -0
- sage_wheels/share/singular/LIB/ratgb.lib +489 -0
- sage_wheels/share/singular/LIB/realclassify.lib +5759 -0
- sage_wheels/share/singular/LIB/realizationMatroids.lib +772 -0
- sage_wheels/share/singular/LIB/realrad.lib +1197 -0
- sage_wheels/share/singular/LIB/recover.lib +2628 -0
- sage_wheels/share/singular/LIB/redcgs.lib +3984 -0
- sage_wheels/share/singular/LIB/reesclos.lib +465 -0
- sage_wheels/share/singular/LIB/resbinomial.lib +2802 -0
- sage_wheels/share/singular/LIB/resgraph.lib +789 -0
- sage_wheels/share/singular/LIB/resjung.lib +820 -0
- sage_wheels/share/singular/LIB/resolve.lib +5110 -0
- sage_wheels/share/singular/LIB/resources.lib +170 -0
- sage_wheels/share/singular/LIB/reszeta.lib +5473 -0
- sage_wheels/share/singular/LIB/ring.lib +1328 -0
- sage_wheels/share/singular/LIB/ringgb.lib +343 -0
- sage_wheels/share/singular/LIB/rinvar.lib +1153 -0
- sage_wheels/share/singular/LIB/rootisolation.lib +1481 -0
- sage_wheels/share/singular/LIB/rootsmr.lib +709 -0
- sage_wheels/share/singular/LIB/rootsur.lib +886 -0
- sage_wheels/share/singular/LIB/rstandard.lib +607 -0
- sage_wheels/share/singular/LIB/rwalk.lib +336 -0
- sage_wheels/share/singular/LIB/sagbi.lib +1353 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz.lib +1622 -0
- sage_wheels/share/singular/LIB/sagbiNormaliz0.lib +1498 -0
- sage_wheels/share/singular/LIB/sagbigrob.lib +449 -0
- sage_wheels/share/singular/LIB/schreyer.lib +321 -0
- sage_wheels/share/singular/LIB/schubert.lib +2551 -0
- sage_wheels/share/singular/LIB/sets.lib +524 -0
- sage_wheels/share/singular/LIB/sheafcoh.lib +1663 -0
- sage_wheels/share/singular/LIB/signcond.lib +437 -0
- sage_wheels/share/singular/LIB/sing.lib +1094 -0
- sage_wheels/share/singular/LIB/sing4ti2.lib +419 -0
- sage_wheels/share/singular/LIB/solve.lib +2243 -0
- sage_wheels/share/singular/LIB/spcurve.lib +1077 -0
- sage_wheels/share/singular/LIB/spectrum.lib +62 -0
- sage_wheels/share/singular/LIB/sresext.lib +757 -0
- sage_wheels/share/singular/LIB/ssi.lib +143 -0
- sage_wheels/share/singular/LIB/standard.lib +2769 -0
- sage_wheels/share/singular/LIB/stanleyreisner.lib +473 -0
- sage_wheels/share/singular/LIB/stdmodule.lib +547 -0
- sage_wheels/share/singular/LIB/stratify.lib +1070 -0
- sage_wheels/share/singular/LIB/surf.lib +506 -0
- sage_wheels/share/singular/LIB/surf_jupyter.lib +223 -0
- sage_wheels/share/singular/LIB/surfacesignature.lib +522 -0
- sage_wheels/share/singular/LIB/surfex.lib +1462 -0
- sage_wheels/share/singular/LIB/swalk.lib +877 -0
- sage_wheels/share/singular/LIB/symodstd.lib +1570 -0
- sage_wheels/share/singular/LIB/systhreads.lib +74 -0
- sage_wheels/share/singular/LIB/tasks.lib +1324 -0
- sage_wheels/share/singular/LIB/tateProdCplxNegGrad.lib +2412 -0
- sage_wheels/share/singular/LIB/teachstd.lib +858 -0
- sage_wheels/share/singular/LIB/template.lib +116 -0
- sage_wheels/share/singular/LIB/toric.lib +1119 -0
- sage_wheels/share/singular/LIB/transformation.lib +116 -0
- sage_wheels/share/singular/LIB/triang.lib +1197 -0
- sage_wheels/share/singular/LIB/tropical.lib +8741 -0
- sage_wheels/share/singular/LIB/tropicalEllipticCovers.lib +2922 -0
- sage_wheels/share/singular/LIB/tropicalNewton.lib +1128 -0
- sage_wheels/share/singular/LIB/tst.lib +1108 -0
- sage_wheels/share/singular/LIB/weierstr.lib +241 -0
- sage_wheels/share/singular/LIB/zeroset.lib +1478 -0
- sage_wheels/share/singular/emacs/.emacs-general +184 -0
- sage_wheels/share/singular/emacs/.emacs-singular +234 -0
- sage_wheels/share/singular/emacs/COPYING +44 -0
- sage_wheels/share/singular/emacs/cmd-cmpl.el +241 -0
- sage_wheels/share/singular/emacs/ex-cmpl.el +1681 -0
- sage_wheels/share/singular/emacs/hlp-cmpl.el +4318 -0
- sage_wheels/share/singular/emacs/lib-cmpl.el +179 -0
- sage_wheels/share/singular/emacs/singular.el +4273 -0
- sage_wheels/share/singular/emacs/singular.xpm +39 -0
- sage_wheels/share/singular/singular.idx +5002 -0
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
2
|
+
version="version primitiv.lib 4.1.2.0 Feb_2019 "; // $Id: 3b3d532f7292adbc8e8938e1d6a3e436c2a0afc2 $
|
|
3
|
+
category="Commutative Algebra";
|
|
4
|
+
info="
|
|
5
|
+
LIBRARY: primitiv.lib Computing a Primitive Element
|
|
6
|
+
AUTHOR: Martin Lamm, email: lamm@mathematik.uni-kl.de
|
|
7
|
+
|
|
8
|
+
PROCEDURES:
|
|
9
|
+
primitive(ideal i); find minimal polynomial for a primitive element
|
|
10
|
+
primitive_extra(i); find primitive element for two generators
|
|
11
|
+
splitring(f,R[,L]); define ring extension with name R and switch to it
|
|
12
|
+
";
|
|
13
|
+
|
|
14
|
+
LIB "random.lib";
|
|
15
|
+
LIB "ring.lib";
|
|
16
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
17
|
+
|
|
18
|
+
proc primitive(ideal i)
|
|
19
|
+
"USAGE: primitive(i); i ideal
|
|
20
|
+
ASSUME: i is given by generators m[1],...,m[n] such that for j=1,...,n @*
|
|
21
|
+
- m[j] is a polynomial in k[x(1),...,x(j)] @*
|
|
22
|
+
- m[j](a[1],...,a[j-1],x(j)) is the minimal polynomial for a[j] over
|
|
23
|
+
k(a[1],...,a[j-1]) @*
|
|
24
|
+
(k the ground field of the current basering and x(1),...,x(n)
|
|
25
|
+
the ring variables).
|
|
26
|
+
RETURN: ideal j in k[x(n)] with
|
|
27
|
+
- j[1] a minimal polynomial for a primitive element b of
|
|
28
|
+
k(a[1],...,a[n]) over k,
|
|
29
|
+
- j[2],...,j[n+1] polynomials in k[x(n)] such that j[i+1](b)=a[i]
|
|
30
|
+
for i=1,...,n.
|
|
31
|
+
NOTE: the number of variables in the basering has to be exactly n,
|
|
32
|
+
the number of given generators (i.e., minimal polynomials).@*
|
|
33
|
+
If the ground field k has only a few elements it may happen that no
|
|
34
|
+
linear combination of a[1],...,a[n] is a primitive element. In this
|
|
35
|
+
case @code{primitive(i)} returns the zero ideal, and one should use
|
|
36
|
+
@code{primitive_extra(i)} instead.
|
|
37
|
+
SEE ALSO: primitive_extra
|
|
38
|
+
KEYWORDS: primitive element
|
|
39
|
+
EXAMPLE: example primitive; shows an example
|
|
40
|
+
"
|
|
41
|
+
{
|
|
42
|
+
def altring=basering;
|
|
43
|
+
ring deglexring = create_ring(ring_list(altring)[1],"("+varstr(altring)+")","dp","no_minpoly");
|
|
44
|
+
ideal j;
|
|
45
|
+
ring lexring = create_ring(ring_list(altring)[1],"("+varstr(altring)+")","lp","no_minpoly");
|
|
46
|
+
ideal i=fetch(altring,i);
|
|
47
|
+
|
|
48
|
+
int k,schlecht,Fehlversuche,maxtry;
|
|
49
|
+
int nva = nvars(basering);
|
|
50
|
+
int p=char(basering);
|
|
51
|
+
if (p==0) {
|
|
52
|
+
p=100000;
|
|
53
|
+
if (nva<3) { maxtry= 100000000; }
|
|
54
|
+
else { maxtry=2147483647; }
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
if ((nva<4) || (p<60)) {
|
|
58
|
+
maxtry=p^(nva-1); }
|
|
59
|
+
else {
|
|
60
|
+
maxtry=2147483647; // int overflow(^) vermeiden
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
ideal jmap,j;
|
|
64
|
+
map phi;
|
|
65
|
+
option(redSB);
|
|
66
|
+
|
|
67
|
+
//-------- Mache so lange Random-Koord.wechsel, bis letztes Polynom -------------
|
|
68
|
+
//--------------- das Minpoly eines primitiven Elements ist : ----------------
|
|
69
|
+
for (Fehlversuche=0; Fehlversuche<maxtry; Fehlversuche++) {
|
|
70
|
+
schlecht=0;
|
|
71
|
+
if ((p<60) && (nva==2)) { // systematische Suche statt random
|
|
72
|
+
jmap=ideal(var(1),var(2)+Fehlversuche*var(1));
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
if (Fehlversuche==0) { jmap=maxideal(1);}
|
|
76
|
+
else {
|
|
77
|
+
if (Fehlversuche<5) { jmap=randomLast(10);}
|
|
78
|
+
else {
|
|
79
|
+
if (Fehlversuche<20) { jmap=randomLast(100);}
|
|
80
|
+
else { jmap=randomLast(100000000);}
|
|
81
|
+
}} // groessere Werte machen keinen Sinn
|
|
82
|
+
}
|
|
83
|
+
phi=lexring,jmap;
|
|
84
|
+
j=phi(i);
|
|
85
|
+
setring deglexring;
|
|
86
|
+
//--------------- Berechne reduzierte Standardbasis mit fglm: ----------------
|
|
87
|
+
j=std(fetch(lexring,j));
|
|
88
|
+
setring lexring;
|
|
89
|
+
j=fglm(deglexring,j);
|
|
90
|
+
//-- teste, ob SB n Elemente enthaelt (falls ja, ob lead(Fi)=xi i=1... n-1): -
|
|
91
|
+
if (size(j)==nva) {
|
|
92
|
+
for (k=1; k<nva; k++) {
|
|
93
|
+
j[k+1]=j[k+1]/leadcoef(j[k+1]); // normiere die Erzeuger
|
|
94
|
+
if (lead(j[k+1]) != var(nva-k)) { schlecht=1;}
|
|
95
|
+
}
|
|
96
|
+
if (schlecht==0) {
|
|
97
|
+
//--- Random-Koord.wechsel war gut: Berechne das zurueckzugebende Ideal: -----
|
|
98
|
+
ideal erg;
|
|
99
|
+
for (k=1; k<nva; k++) { erg[k]=var(k)-j[nva-k+1]; }
|
|
100
|
+
// =g_k(x_n) mit a_k=g_k(a_n)
|
|
101
|
+
erg[nva]=var(nva);
|
|
102
|
+
map chi=lexring,erg;
|
|
103
|
+
ideal extra=maxideal(1);extra=phi(extra);
|
|
104
|
+
// sonst: "argument of a map must have a name"
|
|
105
|
+
erg=j[1],chi(extra); // j[1] = Minimalpolynom
|
|
106
|
+
setring altring;
|
|
107
|
+
return(fetch(lexring,erg));
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
dbprint("The random coordinate change was bad!");
|
|
111
|
+
}
|
|
112
|
+
if (voice==2) {
|
|
113
|
+
"// ** Warning: No primitive element could be found.";
|
|
114
|
+
"// If the given ideal really describes the minimal polynomials of";
|
|
115
|
+
"// a series of algebraic elements (cf. `help primitive;') then";
|
|
116
|
+
"// try `primitive_extra'.";
|
|
117
|
+
}
|
|
118
|
+
setring altring;
|
|
119
|
+
return(ideal(0));
|
|
120
|
+
}
|
|
121
|
+
example
|
|
122
|
+
{ "EXAMPLE:"; echo = 2;
|
|
123
|
+
ring exring=0,(x,y),dp;
|
|
124
|
+
ideal i=x2+1,y2-x; // compute Q(i,i^(1/2))=:L
|
|
125
|
+
ideal j=primitive(i);
|
|
126
|
+
j[1]; // L=Q(a) with a=(-1)^(1/4)
|
|
127
|
+
j[2]; // i=a^2
|
|
128
|
+
j[3]; // i^(1/2)=a
|
|
129
|
+
// the 2nd element was already primitive!
|
|
130
|
+
j=primitive(ideal(x2-2,y2-3)); // compute Q(sqrt(2),sqrt(3))
|
|
131
|
+
j[1];
|
|
132
|
+
j[2];
|
|
133
|
+
j[3];
|
|
134
|
+
// no element was primitive -- the calculation of primitive elements
|
|
135
|
+
// is based on a random choice.
|
|
136
|
+
}
|
|
137
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
138
|
+
|
|
139
|
+
proc primitive_extra(ideal i)
|
|
140
|
+
"USAGE: primitive_extra(i); i ideal
|
|
141
|
+
ASSUME: The ground field of the basering is k=Q or k=Z/pZ and the ideal
|
|
142
|
+
i is given by 2 generators f,g with the following properties:
|
|
143
|
+
@format
|
|
144
|
+
f is the minimal polynomial of a in k[x],
|
|
145
|
+
g is a polynomial in k[x,y] s.th. g(a,y) is the minpoly of b in k(a)[y].
|
|
146
|
+
@end format
|
|
147
|
+
Here, x is the name of the first ring variable, y the name of the
|
|
148
|
+
second.
|
|
149
|
+
RETURN: ideal j in k[y] such that
|
|
150
|
+
@format
|
|
151
|
+
j[1] is the minimal polynomial for a primitive element c of k(a,b) over k,
|
|
152
|
+
j[2] is a polynomial s.th. j[2](c)=a.
|
|
153
|
+
@end format
|
|
154
|
+
NOTE: While @code{primitive(i)} may fail for finite fields,
|
|
155
|
+
@code{primitive_extra(i)} tries all elements of k(a,b) and, hence,
|
|
156
|
+
always finds a primitive element. @*
|
|
157
|
+
In order to do this (try all elements), field extensions like Z/pZ(a)
|
|
158
|
+
are not allowed for the ground field k. @*
|
|
159
|
+
@code{primitive_extra(i)} assumes that the second generator, g, is
|
|
160
|
+
monic as polynomial in (k[x])[y].
|
|
161
|
+
EXAMPLE: example primitive_extra; shows an example
|
|
162
|
+
"
|
|
163
|
+
{
|
|
164
|
+
def altring=basering;
|
|
165
|
+
int grad1=deg(i[1]);
|
|
166
|
+
int grad2=deg(jet(i[2],0,intvec(1,0)));
|
|
167
|
+
if (grad2==0) { ERROR("i[2] is not monic"); }
|
|
168
|
+
int countx,countz;
|
|
169
|
+
if (size(variables(i[1]))!=1) { ERROR("i[1] must be poly in x"); }
|
|
170
|
+
if (size(variables(i[2]))>2) { ERROR("i[2] must be poly in x,a"); }
|
|
171
|
+
//if (variables(i[2])[2]!=a) { ERROR("i[2] must be poly in x,a"); }
|
|
172
|
+
ring deglexring=char(altring),(x,y,z),dp;
|
|
173
|
+
map transfer=altring,x,z;
|
|
174
|
+
ideal i=transfer(i);
|
|
175
|
+
if (size(i)!=2)
|
|
176
|
+
{
|
|
177
|
+
ERROR("either wrong number of given minimal polynomials"+newline+
|
|
178
|
+
"or wrong choice of ring variables (must use the first two)");
|
|
179
|
+
}
|
|
180
|
+
matrix mat;
|
|
181
|
+
ring lexring=char(altring),(x,y),lp;
|
|
182
|
+
ideal j;
|
|
183
|
+
ring deglex2ring=char(altring),(x,y),dp;
|
|
184
|
+
ideal j;
|
|
185
|
+
setring deglexring;
|
|
186
|
+
ideal j;
|
|
187
|
+
option(redSB);
|
|
188
|
+
poly g=z;
|
|
189
|
+
int found=0;
|
|
190
|
+
|
|
191
|
+
//---------------- Schleife zum Finden des primitiven Elements ---------------
|
|
192
|
+
//--- Schleife ist so angordnet, dass g in Charakteristik 0 linear bleibt ----
|
|
193
|
+
while (found==0)
|
|
194
|
+
{
|
|
195
|
+
j=eliminate(i+ideal(g-y),z);
|
|
196
|
+
setring deglex2ring;
|
|
197
|
+
j=std(imap(deglexring,j));
|
|
198
|
+
setring lexring;
|
|
199
|
+
j=fglm(deglex2ring,j);
|
|
200
|
+
if (size(j)==2)
|
|
201
|
+
{
|
|
202
|
+
if (deg(j[1])==grad1*grad2)
|
|
203
|
+
{
|
|
204
|
+
j[2]=j[2]/leadcoef(j[2]); // Normierung
|
|
205
|
+
if (lead(j[2])==x)
|
|
206
|
+
{ // Alles ok
|
|
207
|
+
found=1;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
setring deglexring;
|
|
212
|
+
if (found==0)
|
|
213
|
+
{
|
|
214
|
+
//------------------ waehle ein neues Polynom g ------------------------------
|
|
215
|
+
dbprint("Still searching for primitive element...");
|
|
216
|
+
countx=0;
|
|
217
|
+
countz=0;
|
|
218
|
+
while (found==0)
|
|
219
|
+
{
|
|
220
|
+
countx++;
|
|
221
|
+
if (countx>=grad1)
|
|
222
|
+
{
|
|
223
|
+
countx=0;
|
|
224
|
+
countz++;
|
|
225
|
+
if (countz>=grad2)
|
|
226
|
+
{ ERROR("No primitive element found!! This should NEVER happen!"); }
|
|
227
|
+
}
|
|
228
|
+
g = g +x^countx *z^countz;
|
|
229
|
+
mat=coeffs(g,z);
|
|
230
|
+
if (size(mat)>countz)
|
|
231
|
+
{
|
|
232
|
+
mat=coeffs(mat[countz+1,1],x);
|
|
233
|
+
if (size(mat)>countx)
|
|
234
|
+
{
|
|
235
|
+
if (mat[countx+1,1] != 0)
|
|
236
|
+
{
|
|
237
|
+
found=1; // d.h. hier: neues g gefunden
|
|
238
|
+
}}}
|
|
239
|
+
}
|
|
240
|
+
found=0;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
//------------------- primitives Element gefunden; Rueckgabe -----------------
|
|
244
|
+
setring lexring;
|
|
245
|
+
j[2]=x-j[2];
|
|
246
|
+
setring altring;
|
|
247
|
+
map transfer=lexring,var(1),var(2);
|
|
248
|
+
return(transfer(j));
|
|
249
|
+
}
|
|
250
|
+
example
|
|
251
|
+
{ "EXAMPLE:"; echo = 2;
|
|
252
|
+
ring exring=3,(x,y),dp;
|
|
253
|
+
ideal i=x2+1,y3+y2-1;
|
|
254
|
+
primitive_extra(i);
|
|
255
|
+
ring extension=(3,y),x,dp;
|
|
256
|
+
minpoly=y6-y5+y4-y3-y-1;
|
|
257
|
+
number a=y5+y4+y2+y+1;
|
|
258
|
+
a^2;
|
|
259
|
+
factorize(x2+1);
|
|
260
|
+
factorize(x3+x2-1);
|
|
261
|
+
}
|
|
262
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
263
|
+
|
|
264
|
+
proc splitring(poly f,list #)
|
|
265
|
+
"USAGE: splitring(f[,L]); f poly, L list of polys and/or ideals
|
|
266
|
+
(optional)
|
|
267
|
+
ASSUME: f is univariate and irreducible over the active ring. @*
|
|
268
|
+
The active ring must allow an algebraic extension (e.g., it cannot
|
|
269
|
+
be a transcendent ring extension of Q or Z/p).
|
|
270
|
+
RETURN: ring; @*
|
|
271
|
+
if called with a nonempty second parameter L, then in the output
|
|
272
|
+
ring there is defined a list erg ( =L mapped to the new ring);
|
|
273
|
+
if the minpoly of the active ring is non-zero, then the image of
|
|
274
|
+
the primitive root of f in the output ring is appended as last
|
|
275
|
+
entry of the list erg.
|
|
276
|
+
NOTE: If the old ring has no parameter, the name @code{a} is chosen for the
|
|
277
|
+
parameter of R (if @code{a} is no ring variable; if it is, @code{b} is
|
|
278
|
+
chosen, etc.; if @code{a,b,c,o} are ring variables,
|
|
279
|
+
@code{splitring(f[,L])} produces an error message), otherwise the
|
|
280
|
+
name of the parameter is kept and only the minimal polynomial is
|
|
281
|
+
changed. @*
|
|
282
|
+
The names of the ring variables and the orderings are not affected. @*
|
|
283
|
+
KEYWORDS: algebraic field extension; extension of rings
|
|
284
|
+
EXAMPLE: example splitring; shows an example
|
|
285
|
+
"
|
|
286
|
+
{
|
|
287
|
+
ASSUME(0,size(factorize(f)[1])==2);// f not irreduzible
|
|
288
|
+
//----------------- split ist bereits eine proc in 'inout.lib' ! -------------
|
|
289
|
+
if (size(#)>=1) {
|
|
290
|
+
list L=#;
|
|
291
|
+
int L_groesse=size(L);
|
|
292
|
+
}
|
|
293
|
+
else { int L_groesse=-1; }
|
|
294
|
+
//-------------- ermittle das Minimalpolynom des aktuellen Rings: ------------
|
|
295
|
+
string minp=string(minpoly);
|
|
296
|
+
|
|
297
|
+
def altring=basering;
|
|
298
|
+
string charakt=string(char(altring));
|
|
299
|
+
string varnames=varstr(altring);
|
|
300
|
+
string algname;
|
|
301
|
+
int i;
|
|
302
|
+
int anzvar=size(maxideal(1));
|
|
303
|
+
//--------------- Fall 1: Bisheriger Ring hatte kein Minimalpolynom ----------
|
|
304
|
+
if (minp=="0") { // only possible without parameters (by assumption)
|
|
305
|
+
if (find(varnames,"a")==0) { algname="a";}
|
|
306
|
+
else { if (find(varnames,"b")==0) { algname="b";}
|
|
307
|
+
else { if (find(varnames,"c")==0)
|
|
308
|
+
{ algname="c";}
|
|
309
|
+
else { if (find(varnames,"o")==0)
|
|
310
|
+
{ algname="o";}
|
|
311
|
+
else {
|
|
312
|
+
ERROR("Sorry -- could not find a free name for the primitive element.
|
|
313
|
+
** Try e.g. a ring without 'a' or 'b' as variable.");
|
|
314
|
+
}}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
//-- erzeuge einen String, der das Minimalpolynom des neuen Rings enthaelt: -
|
|
318
|
+
ring splt1 = create_ring(charakt, algname, "dp");
|
|
319
|
+
ideal abbnach=var(1);
|
|
320
|
+
for (i=1; i<anzvar; i++) { abbnach=abbnach,var(1); }
|
|
321
|
+
map nach_splt1=altring,abbnach;
|
|
322
|
+
execute("poly mipol="+string(nach_splt1(f))+";");
|
|
323
|
+
string Rminp=string(mipol);
|
|
324
|
+
|
|
325
|
+
//--------------------- definiere den neuen Ring: ---------------------------
|
|
326
|
+
ring neuring = create_ring("("+charakt+","+algname+")", "("+varnames+")", "("+ordstr(altring)+")");
|
|
327
|
+
execute("minpoly="+Rminp+";");
|
|
328
|
+
|
|
329
|
+
//---------------------- Berechne die zurueckzugebende Liste: ---------------
|
|
330
|
+
if (L_groesse>0) {
|
|
331
|
+
list erg;
|
|
332
|
+
map take=altring,maxideal(1);
|
|
333
|
+
erg=take(L);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
else {
|
|
337
|
+
|
|
338
|
+
//------------- Fall 2: Bisheriger Ring hatte ein Minimalpolynom: -----------
|
|
339
|
+
algname=parstr(altring); // Name des algebraischen Elements
|
|
340
|
+
if (npars(altring)>1) {"only one Parameter is allowed!!"; return(altring);}
|
|
341
|
+
|
|
342
|
+
//---------------- Minimalpolynom in ein Polynom umwandeln: -----------------
|
|
343
|
+
ring splt2 = create_ring(charakt, algname, "dp");
|
|
344
|
+
execute("poly mipol="+minp+";");
|
|
345
|
+
// f ist Polynom in algname und einer weiteren Variablen -> mache f bivariat:
|
|
346
|
+
ring splt3 = create_ring(charakt, "("+algname+","+varnames+")", "dp");
|
|
347
|
+
poly f=imap(altring,f);
|
|
348
|
+
|
|
349
|
+
//-------------- Vorbereitung des Aufrufes von primitive: -------------------
|
|
350
|
+
ring splt1 = create_ring(charakt, "(x,y)", "dp");
|
|
351
|
+
ideal abbnach=x;
|
|
352
|
+
for (i=1; i<=anzvar; i++) { abbnach=abbnach,y; }
|
|
353
|
+
map nach_splt1_3=splt3,abbnach;
|
|
354
|
+
map nach_splt1_2=splt2,x;
|
|
355
|
+
ideal maxid=nach_splt1_2(mipol),nach_splt1_3(f);
|
|
356
|
+
ideal primit=primitive(maxid);
|
|
357
|
+
if (size(primit)==0) { // Suche mit 1. Proc erfolglos
|
|
358
|
+
primit=primitive_extra(maxid);
|
|
359
|
+
}
|
|
360
|
+
//-- erzeuge einen String, der das Minimalpolynom des neuen Rings enthaelt: -
|
|
361
|
+
setring splt2;
|
|
362
|
+
map nach_splt2=splt1,0,var(1); // x->0, y->a
|
|
363
|
+
minp=string(nach_splt2(primit)[1]);
|
|
364
|
+
if (printlevel > voice) { "// new minimal polynomial:",minp; }
|
|
365
|
+
//--------------------- definiere den neuen Ring: ---------------------------
|
|
366
|
+
ring neuring = create_ring("("+charakt+","+algname+")", "("+varnames+")", "("+ordstr(altring)+")");
|
|
367
|
+
execute("minpoly="+minp+";");
|
|
368
|
+
|
|
369
|
+
if (L_groesse>0) {
|
|
370
|
+
//---------------------- Berechne die zurueckzugebende Liste: -------------
|
|
371
|
+
list erg;
|
|
372
|
+
setring splt3;
|
|
373
|
+
list zwi=imap(altring,L);
|
|
374
|
+
map nach_splt3_1=splt1,0,var(1); // x->0, y->a
|
|
375
|
+
//----- rechne das primitive Element von altring in das von neuring um: ---
|
|
376
|
+
ideal convid=maxideal(1);
|
|
377
|
+
convid[1]=nach_splt3_1(primit)[2];
|
|
378
|
+
poly new_b=nach_splt3_1(primit)[3];
|
|
379
|
+
map convert=splt3,convid;
|
|
380
|
+
zwi=convert(zwi);
|
|
381
|
+
setring neuring;
|
|
382
|
+
erg=imap(splt3,zwi);
|
|
383
|
+
erg[size(erg)+1]=imap(splt3,new_b);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
if (defined(erg)){export erg;}
|
|
387
|
+
return(neuring);
|
|
388
|
+
}
|
|
389
|
+
example
|
|
390
|
+
{ "EXAMPLE:"; echo = 2;
|
|
391
|
+
ring r=0,(x,y),dp;
|
|
392
|
+
def r1=splitring(x2-2);
|
|
393
|
+
setring r1; basering; // change to Q(sqrt(2))
|
|
394
|
+
// change to Q(sqrt(2),sqrt(sqrt(2)))=Q(a) and return the transformed
|
|
395
|
+
// old parameter:
|
|
396
|
+
def r2=splitring(x2-a,a);
|
|
397
|
+
setring r2; basering; erg;
|
|
398
|
+
// the result is (a)^2 = (sqrt(sqrt(2)))^2
|
|
399
|
+
kill r1; kill r2;
|
|
400
|
+
}
|
|
401
|
+
///////////////////////////////////////////////////////////////////////////////
|