Implementation in Magma of an algorithm to calculate multiplier ideals of meromorphic functions.
- Install Magma
- Download this repository (the only necessary file is
MultiplierMeromorphic.m) - Download SingularitiesDim2/
MultiplierMeromorphic.m: functions to calculate log resolutions and multiplier ideals of meromorphic functionsMultiplierMeromorphic.sig: file autogenerated by MagmacalculateExamples.m: simple script to compute examplescalculateExamplesFancy.m: complicated script to compute examplesExamples/: computed examples
Calculate the minimal log-resolution of
for
in the range
AttachSpec("./SingularitiesDim2/IntegralClosureDim2.spec");
Attach("./MultiplierMeromorphic.m");
P<x, y> := LocalPolynomialRing(RationalField(), 2, "lglex");
f := (y^2-x^3)^4 + x^8*y^5;
g := y^2-x^3;
Nf, Ng, N, Prox := LogResolutionMeromorphic(f, g);
S := MultiplierIdealsMeromorphic(f, g : MinJN:=0, MaxJN:=2, ComputeIdeals:=true);