Skip to content
Snippets Groups Projects
main.tex 33.8 KiB
Newer Older
%% Write  basic article template
Luke Naylor's avatar
Luke Naylor committed

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{color}
\usepackage{sagetex}
\usepackage{minted}
\usepackage[]{breqn}
Luke Naylor's avatar
Luke Naylor committed

Luke Naylor's avatar
Luke Naylor committed
\newcommand{\QQ}{\mathbb{Q}}
Luke Naylor's avatar
Luke Naylor committed
\newcommand{\ZZ}{\mathbb{Z}}
\newcommand{\RR}{\mathbb{R}}
Luke Naylor's avatar
Luke Naylor committed
\newcommand{\chern}{\operatorname{ch}}
Luke Naylor's avatar
Luke Naylor committed
\newcommand{\lcm}{\operatorname{lcm}}
Luke Naylor's avatar
Luke Naylor committed
\newcommand{\firsttilt}[1]{\mathcal{B}^{#1}}
\newcommand{\bddderived}{\mathcal{D}^{b}}
\newcommand{\centralcharge}{\mathcal{Z}}
\newcommand{\minorheading}[1]{{\noindent\normalfont\normalsize\bfseries #1}}
Luke Naylor's avatar
Luke Naylor committed

\newtheorem{theorem}{Theorem}[section]
\newtheorem{corrolary}{Corrolary}[section]
\newtheorem{lemmadfn}{Lemma/Definition}[section]
\newtheorem{dfn}{Definition}[section]
Luke Naylor's avatar
Luke Naylor committed
\begin{document}

\begin{sagesilent}
# Requires extra package:
#! sage -pip install "pseudowalls==0.0.3" --extra-index-url https://gitlab.com/api/v4/projects/43962374/packages/pypi/simple

from pseudowalls import *

Δ = lambda v: v.Q_tilt()
mu = stability.Mumford().slope
\end{sagesilent}

Luke Naylor's avatar
Luke Naylor committed
\title{Explicit Formulae for Bounds on the Ranks of Tilt Destabilizers and
Practical Methods for Finding Pseudowalls}
Luke Naylor's avatar
Luke Naylor committed

\author{Luke Naylor}

\maketitle

\section{Introduction}
\label{sec:intro}
Luke Naylor's avatar
Luke Naylor committed

[ref] shows that for any rational $\beta_0$,
the vertical line $\{\sigma_{\alpha,\beta_0} \colon \alpha \in \RR_{>0}\}$ only
Luke Naylor's avatar
Luke Naylor committed
intersects finitely many walls. A consequence of this is that if
$\beta_{-}$ is rational, then there can only be finitely many circular walls to the
Luke Naylor's avatar
Luke Naylor committed
left of the vertical wall $\beta = \mu$.
On the other hand, when $\beta_{-}$ is not rational, [ref] showed that there are
Luke Naylor's avatar
Luke Naylor committed
infinitely many walls.

This dichotomy does not only hold for real walls, realised by actual objects in
$\bddderived(X)$, but also for pseudowalls. Here pseudowalls are defined as
`potential' walls, induced by hypothetical Chern characters of destabilizers
which satisfy certain numerical conditions which would be satisfied by any real
destabilizer, regardless of whether they are realised by actual semistabilizers
in $\bddderived(X)$.
Luke Naylor's avatar
Luke Naylor committed

Since real walls are a subset of pseudowalls, the irrational $\beta_{-}$ case
Luke Naylor's avatar
Luke Naylor committed
follows immediately from the corresponding case for real walls.
However, the rational $\beta_{-}$ case involves showing that the following
Luke Naylor's avatar
Luke Naylor committed
conditions only admit finitely many solutions (despite the fact that the same
conditions admit infinitely many solutions when $\beta_{-}$ is irrational).
Luke Naylor's avatar
Luke Naylor committed


For a destabilizing sequence
$E \hookrightarrow F \twoheadrightarrow G$ in $\mathcal{B}^\beta$
we have the following conditions.
There are some Bogomolov-Gieseker type inequalities:
$0 \leq \Delta(E), \Delta(G)$ and $\Delta(E) + \Delta(G) \leq \Delta(F)$.
We also have a condition relating to the tilt category $\firsttilt\beta$:
$0 \leq \chern^\beta_1(E) \leq \chern^\beta_1(F)$.
Finally, there's a condition ensuring that the radius of the circular wall is
strictly positive: $\chern^{\beta_{-}}_2(E) > 0$.
Luke Naylor's avatar
Luke Naylor committed

For any fixed $\chern_0(E)$, the inequality
$0 \leq \chern^{\beta}_1(E) \leq \chern^{\beta}_1(F)$,
allows us to bound $\chern_1(E)$. Then, the other inequalities allow us to
bound $\chern_2(E)$. The final part to showing the finiteness of pseudowalls
would be bounding $\chern_0(E)$. This has been hinted at in [ref] and done
explicitly by Benjamin Schmidt within a computer program which computes
pseudowalls. Here we discuss these bounds in more detail, along with the methods
used, followed by refinements on them which give explicit formulae for tighter
bounds on $\chern_0(E)$ of potential destabilizers $E$ of $F$.

Luke Naylor's avatar
Luke Naylor committed

\section{Characteristic Curves of Stability Conditions Associated to Chern
Characters}
Luke Naylor's avatar
Luke Naylor committed

\begin{sagesilent}
v = Chern_Char(3, 2, -2)
u = Chern_Char(1, 0, 0)

alpha = stability.Tilt().alpha
beta = stability.Tilt().beta

coords_range = (beta, -5, 5), (alpha, 0, 5)

charact_curve_plot = (
	implicit_plot(stability.Tilt().degree(u), *coords_range , rgbcolor = "red")
	+ implicit_plot(stability.Tilt().degree(v), *coords_range )
	+ line([(mu(v),0),(mu(v),5)], linestyle = "dashed", legend_label =
	r"$(3,2\ell,-4\ell^2/2)$")
	+ line([(mu(u),0),(mu(u),5)], rgbcolor = "red", linestyle =
	"dashed", legend_label = r"$(1,0,0)$")
	+ implicit_plot(stability.Tilt().wall_eqn(u,v)/alpha,
	*coords_range , rgbcolor = "black")
)
charact_curve_plot.xmax(1)
charact_curve_plot.xmin(-2)
charact_curve_plot.ymax(1.5)
charact_curve_plot.axes_labels([r"$\beta$", r"$\alpha$"])
\end{sagesilent}

\begin{figure}
  \centering
	\sageplot[width=\linewidth]{charact_curve_plot}
	\caption{}
  \label{fig:characteristic-curves-example}
\end{figure}

Talk about figure \ref{fig:characteristic-curves-example}.


\section{Loose Bounds on $\chern_0(E)$ for Semistabilizers Along Fixed
$\beta\in\QQ$}
\begin{dfn}[Twisted Chern Character]
\label{sec:twisted-chern}
For a given $\beta$, define the twisted Chern character as follows.
\[\chern^\beta(E) = \chern(E) \cdot \exp(-\beta \ell)\]
\noindent
Component-wise, this is:
\begin{align*}
	\chern^\beta_0(E) &= \chern_0(E)
\\
	\chern^\beta_1(E) &= \chern_1(E) - \beta \chern_0(E)
\\
	\chern^\beta_2(E) &= \chern_2(E) - \beta \chern_1(E) + \frac{\beta^2}{2} \chern_0(E)
\end{align*}

Luke Naylor's avatar
Luke Naylor committed
% TODO I think this^ needs adjusting for general Surface with $\ell$
Luke Naylor's avatar
Luke Naylor committed

$\chern^\beta_1(E)$ is the imaginary component of the central charge
$\centralcharge_{\alpha,\beta}(E)$ and any element of $\firsttilt\beta$
satisfies $\chern^\beta_1 \geq 0$. This, along with additivity gives us, for any
destabilizing sequence [ref]:
\begin{equation}
	\label{eqn-tilt-cat-cond}
	0 \leq \chern^\beta_1(E) \leq \chern^\beta_1(F)

When finding Chern characters of potential destabilizers $E$ for some fixed
Chern character $\chern(F)$, this bounds $\chern_1(E)$.

The Bogomolov form applied to the twisted Chern character is the same as the
normal one. So $0 \leq \Delta(E)$ yields:

\begin{equation}
	\label{eqn-bgmlv-on-E}
Luke Naylor's avatar
Luke Naylor committed
	2\chern^\beta_0(E) \chern^\beta_2(E) \leq \chern^\beta_1(E)^2
\begin{theorem}[Bound on $r$ - Benjamin Schmidt]
Given a Chern character $v$ such that $\beta_{-}(v)\in\QQ$, the rank $r$ of
any semistabilizer $E$ of some $F \in \firsttilt\beta$ with $\chern(F)=v$ is
bounded above by:

\begin{equation*}
	r \leq \frac{mn^2 \chern^\beta_1(v)^2}{\gcd(m,2n^2)}
\end{equation*}
\end{theorem}

\begin{proof}

The restrictions on $\chern^\beta_0(E)$ and $\chern^\beta_2(E)$
is best seen with the following graph:

% TODO: hyperbola restriction graph (shaded)
\begin{sagesilent}
var("m") # Initialize symbol for variety parameter
\end{sagesilent}
Luke Naylor's avatar
Luke Naylor committed

This is where the rationality of $\beta_{-}$ comes in. If $\beta_{-} = \frac{*}{n}$
Luke Naylor's avatar
Luke Naylor committed
for some $*,n \in \ZZ$.
Then $\chern^\beta_2(E) \in \frac{1}{\lcm(m,2n^2)}\ZZ$ where $m$ is the integer
which guarantees $\chern_2(E) \in \frac{1}{m}\ZZ$ (determined by the variety).
In particular, since $\chern_2(E) > 0$ we must also have
$\chern^\beta_2(E) \geq \frac{1}{\lcm(m,2n^2)}$, which then in turn gives a bound
for the rank of $E$:
Loading
Loading full blame...