Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Testing latest pari + WASM + node.js... and it works?! Wow.

28495 views
License: GPL3
ubuntu2004
Function: mspolygon
Section: modular_symbols
C-Name: mspolygon
Prototype: GD0,L,
Help: mspolygon(M, {flag = 0}): M describes a subgroup G of finite index in
 the modular group PSL2(Z), as given by msinit or a positive integer N
 (encoding the group G = Gamma0(N)), or by msfarey (arbitrary subgroups).
 Return an hyperbolic polygon (Farey symbol) attached to G.
 Binary digits of flag mean: 1=normalized polygon, 2=also add graphical
 representations.
Doc: $M$ describes a subgroup $G$ of finite index in the modular group
 $\text{PSL}_2(\Z)$, as given by \kbd{msinit} or a positive integer $N$
 (encoding the group $G = \Gamma_0(N)$), or by \kbd{msfarey} (arbitrary
 subgroup). Return an hyperbolic polygon (Farey symbol) attached to $G$.
 More precisely:

 \item Its vertices are an ordered list in $\P^{1}(\Q)$ and contain
 a representatives of all cusps.

 \item Its edges are hyperbolic arcs joining two consecutive vertices;
 each edge $e$ is labelled by an integer $\mu(e) \in \{\infty,2,3\}$.

 \item Given a path $(a,b)$ between two elements of $\P^1(\Q)$, let
 $\overline{(a,b)} = (b,a)$ be the opposite path. There is an involution $e
 \to e^*$ on the edges. We have $\mu(e) = \infty$ if and only if $e\neq e^*$;
 when $\mu(e) \neq 3$, $e$ is $G$-equivalent to $\overline{e^*}$, i.e. there
 exists $\gamma_e \in G$ such that $e = \gamma_e \overline{e^*}$; if $\mu(e)=3$
 there exists $\gamma_e \in G$ of order $3$ such that the hyperbolic triangle
 $(e, \gamma_e e, \gamma_e^2 e)$ is invariant by $\gamma_e$. In all cases,
 to each edge we have attached $\gamma_e \in G$ of order $\mu(e)$.

 \noindent The polygon is given by a triple $[E, A, g]$

 \item The list $E$ of its consecutive edges as matrices in $M_2(\Z)$.

 \item The permutation $A$ attached to the involution: if $e = E[i]$ is the
 $i$-th edge, then \kbd{A[i]} is the index of $e^*$ in $E$.

 \item The list $g$ of pairing matrices $\gamma_e$.
 Remark that $\gamma_{e^*}=\gamma_e^{-1}$ if $\mu(e) \neq 3$,
 i.e., $g[i]^{-1} = g[A[i]]$ whenever $i\neq A[i]$ ($\mu(g[i]) = 1$) or
 $\mu(g[i]) = 2$ ($g[i]^2 = 1$). Modulo these trivial relations,
 the pairing matrices form a system of independant generators of $G$. Note
 that $\gamma_e$ is elliptic if and only if $e^* = e$.

 \noindent The above data yields a fundamental domain for $G$ acting
 on Poincar\'e's half-plane: take the convex hull of the polygon defined by

 \item The edges in $E$ such that $e \neq e^*$ or $e^*=e$, where the pairing
 matrix $\gamma_e$ has order $2$;

 \item The edges $(r,t)$ and $(t,s)$ where the edge $e = (r,s) \in E$ is such
 that $e = e^*$ and $\gamma_e$ has order $3$ and the triangle $(r,t,s)$
 is the image of $(0,\exp(2i\pi/3), \infty)$ by some element of $PSL_2(\Q)$
 formed around the edge.

 Binary digits of flag mean:

 1: return a normalized hyperbolic polygon if set, else a polygon with
 unimodular edges (matrices of determinant $1$). A polygon is normalized
 in the sense of compact orientable surfaces if the distance $d(a,a^*)$ between
 an edge $a$ and its image by the involution $a^*$ is less than 2, with
 equality if and only if $a$ is \emph{linked} with another edge $b$
 ($a$, $b$, $a^*$ et $b^*$ appear consecutively in $E$ up to cyclic
 permutation). In particular, the vertices of all edges such that that
 $d(a,a^*) \neq 1$ (distance is 0 or 2) are all equivalent to $0$ modulo
 $G$. The external vertices of $a a^*$ such that $d(a,a^*) = 1$ are
 also equivalent to $0$; the internal vertices $a\cap a^*$ (a single point),
 together with $0$, form a system of representatives of the cusps of
 $G\bs \P^{1}(\Q)$. This is useful to compute the homology group
 $H_1(G,\Z)$ as it gives a symplectic basis for the intersection pairing.
 In this case, the number of parabolic matrices (trace 2) in the system of
 generators $G$ is $2(t-1)$, where $t$ is the number of non equivalent cusps
 for $G$. This is currently only implemented for $G = \Gamma_0(N)$.

 2: add graphical representations (in LaTeX form) for the hyperbolic polygon
 in Poincar\'e's half-space and the involution $a\to a^*$ of the Farey symbol.
 The corresponding character strings can be included in a LaTeX document
 provided the preamble contains \kbd{\bs usepackage\obr tikz\cbr}.

 \bprog
 ? [V,A,g] = mspolygon(3);
 ? V
 %2 = [[-1, 1; -1, 0], [1, 0; 0, 1], [0, 1; -1, 1]]
 ? A
 %3 = Vecsmall([2, 1, 3])
 ? g
 %4 = [[-1, -1; 0, -1], [1, -1; 0, 1], [1, -1; 3, -2]]
 ? [V,A,g, D1,D2] = mspolygon(11,2); \\ D1 and D2 contains pictures
 ? {write("F.tex",
      "\\documentclass{article}\\usepackage{tikz}\\begin{document}"
      D1, "\n", D2,
      "\\end{document}");}

 ? [V1,A1] = mspolygon(6,1); \\ normalized
 ? V1
 %8 = [[-1, 1; -1, 0], [1, 0; 0, 1], [0, 1; -1, 3],
       [1, -2; 3, -5], [-2, 1; -5, 2], [1, -1; 2, -1]]
 ? A1
 %9 = Vecsmall([2, 1, 4, 3, 6, 5])

 ? [V0,A0] = mspolygon(6);  \\ not normalized V[3]^* = V[6], d(V[3],V[6]) = 3
 ? A0
 %11 = Vecsmall([2, 1, 6, 5, 4, 3])

 ? [V,A] = mspolygon(14, 1);
 ? A
 %13 = Vecsmall([2, 1, 4, 3, 6, 5, 9, 10, 7, 8])
 @eprog
 One can see from this last example that the (normalized) polygon has the form
 $$(a_1, a_1^*, a_2, a_2^*, a_3, a_3^*, a_4, a_5, a_4^*, a_5^*),$$
 that $X_0(14)$ is of genus 1 (in general the genus is the number of blocks
 of the form $aba^*b^*$), has no elliptic points ($A$ has no fixed point)
 and 4 cusps (number of blocks of the form $aa^*$ plus 1). The vertices
 of edges $a_4$ and $a_5$ all project to $0$ in $X_0(14)$: the paths $a_4$
 and $a_5$ project as loops in $X_0(14)$ and give a symplectic basis of the
 homology $H_1(X_0(14),\Z)$.
 \bprog
 ? [V,A] = mspolygon(15);
 ? apply(matdet, V) \\ all unimodular
 %2 = [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
 ? [V,A] = mspolygon(15,1);
 ? apply(matdet, V) \\ normalized polygon but no longer unimodular edges
 %4 = [1, 1, 1, 1, 2, 2, 47, 11, 47, 11]
 @eprog