Newer
Older
k \equiv -\aa\bb
\pmod{n}
\end{equation*}
\noindent
Furthermore, if $\aa \not= 0$ then
$r \equiv \aa^{-1}b_q \pmod{n}$.
\end{corollary}
\begin{proof}
This is a specialisation of Theorem \ref{thm:rmax_with_eps1}, where we can
drastically simplify the $\lcm$ and $\gcd$ terms by noting that $m$ divides both
$2$ and $2n^2$, and that $a_v$ is coprime to $n$.
\end{proof}
\begin{example}[$v=(3, 2\ell, -2)$ on $\PP^2$]
\label{exmpl:recurring-third}
Just like in examples \ref{exmpl:recurring-first} and
\ref{exmpl:recurring-second},
take $\ell=c_1(\mathcal{O}(1))$ as the standard polarization on $\PP^2$, so that
$\beta=\sage{recurring.betaminus}$, giving $n=\sage{recurring.n}$
and $\chern_1^{\sage{recurring.betaminus}}(F) = \sage{recurring.twisted.ch[1]}$.
%% TODO transcode notebook code
The (non-exclusive) upper bounds for $r\coloneqq\chern_0(u)$ of a tilt semistabiliser $u$ of $v$
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
in terms of the possible values for $q\coloneqq\chern_1^{\beta}(u)$ are as follows:
\begin{sagesilent}
from examples import bound_comparisons
qs, theorem2_bounds, theorem3_bounds = bound_comparisons(recurring)
\end{sagesilent}
\vspace{1em}
\noindent
\directlua{ table_width = 3*4+1 }
\begin{tabular}{l\directlua{for i=0,table_width-1 do tex.sprint([[|c]]) end}}
$q=\chern_1^\beta(u)$
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{qs[]] .. i .. "]}$"
tex.sprint(cell)
end}
\\ \hline
Thm \ref{thm:rmax_with_uniform_eps}
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{theorem2_bounds[]] .. i .. "]}$"
tex.sprint(cell)
end}
\\
Thm \ref{thm:rmax_with_eps1}
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{theorem3_bounds[]] .. i .. "]}$"
tex.sprint(cell)
end}
\end{tabular}
\vspace{1em}
\noindent
It's worth noting that the bounds given by Theorem \ref{thm:rmax_with_eps1}
reach, but do not exceed the actual maximum rank 25 of the
pseudo-semistabilisers of $v$ in this case.
As a reminder, the original loose bound from Theorem \ref{thm:loose-bound-on-r}
was 144.
\end{example}
\begin{example}[extravagant example: $v=(29, 13\ell, -3/2)$ on $\PP^2$]
\label{exmpl:extravagant-third}
Just like in examples \ref{exmpl:extravagant-first} and
\ref{exmpl:extravagant-second},
take $\ell=c_1(\mathcal{O}(1))$ as the standard polarization on $\PP^2$, so that
$\beta=\sage{extravagant.betaminus}$, giving $n=\sage{n:=extravagant.n}$
and $\chern_1^{\sage{extravagant.betaminus}}(F) = \sage{extravagant.twisted.ch[1]}$.
This example was chosen because the $n$ value is moderatly large, giving more
possible values for $k_{v,q}$, in dfn/Lemma \ref{lemdfn:epsilon_q}. This allows
for a larger possible difference between the bounds given by Theorems
\ref{thm:rmax_with_uniform_eps} and \ref{thm:rmax_with_eps1}, with the bound
from the second being up to $\sage{n}$ times smaller, for any given $q$ value.
The (non-exclusive) upper bounds for $r\coloneqq\chern_0(u)$ of a tilt semistabiliser $u$ of $v$
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
in terms of the first few smallest possible values for $q\coloneqq\chern_1^{\beta}(u)$ are as follows:
\begin{sagesilent}
qs, theorem2_bounds, theorem3_bounds = bound_comparisons(extravagant)
\end{sagesilent}
\vspace{1em}
\noindent
\directlua{ table_width = 12 }
\begin{tabular}{l\directlua{for i=0,table_width do tex.sprint([[|c]]) end}}
$q=\chern_1^\beta(u)$
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{qs[]] .. i .. "]}$"
tex.sprint(cell)
end}
&$\cdots$
\\ \hline
Thm \ref{thm:rmax_with_uniform_eps}
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{theorem2_bounds[]] .. i .. "]}$"
tex.sprint(cell)
end}
&$\cdots$
\\
Thm \ref{thm:rmax_with_eps1}
\directlua{for i=0,table_width-1 do
local cell = [[&$\noexpand\sage{theorem3_bounds[]] .. i .. "]}$"
tex.sprint(cell)
end}
&$\cdots$
\end{tabular}
\vspace{1em}
\noindent
However the reduction in the overall bound on $r$ is not as drastic, since all
possible values for $k_{v,q}$ in $\{1,2,\ldots,\sage{n}\}$ are iterated through
cyclically as we consider successive possible values for $q$.
And for each $q$ where $k_{v,q}=1$, both Theorems give the same bound.
Calculating the maximums over all values of $q$ yields
$\sage{max(theorem2_bounds)}$ for Theorem \ref{thm:rmax_with_uniform_eps}, and
$\sage{max(theorem3_bounds)}$ for Theorem \ref{thm:rmax_with_eps1}.
\end{example}
\egroup % end scope where beta redefined to beta_{-}