2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/source-code/Pseudocode/Calculate-Legendre/Calculate-Legendre.tex
Martin Thoma 7740f0147f Remove trailing spaces
The commands

find . -type f -name '*.md' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

and

find . -type f -name '*.tex' -exec sed --in-place 's/[[:space:]]\+$//' {} \+

were used to do so.
2015-10-14 14:25:34 +02:00

50 lines
1.8 KiB
TeX

\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage[utf8]{inputenc} % this is needed for umlauts
\usepackage[ngerman]{babel} % this is needed for umlauts
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
\usepackage{amssymb,amsmath,amsfonts} % nice math rendering
\usepackage{braket} % needed for \Set
\usepackage{algorithm,algpseudocode}
\begin{document}
\begin{preview}
\begin{algorithm}[H]
\begin{algorithmic}
\Require $p \in \mathbb{P}, a \in \mathbb{Z}, p \geq 3$
\Procedure{CalculateLegendre}{$a$, $p$}
\If{$a \geq p$ or $a < 0$}\Comment{rule (III)}
\State \Return $\Call{CalculateLegendre}{a \mod p, p}$ \Comment{now: $a \in [0, \dots, p-1]$}
\ElsIf{$a == 0$ or $a == 1$}
\State \Return $a$ \Comment{now: $a \in [2, \dots, p-1]$}
\ElsIf{$a == 2$} \Comment{rule (VII)}
\If{$p \equiv \pm 1 \mod 8$}
\State \Return 1
\Else
\State \Return -1
\EndIf \Comment{now: $a \in [3, \dots, p-1]$}
\ElsIf{$a == p-1$} \Comment{rule (VI)}
\If{$p \equiv 1 \mod 4$}
\State \Return 1
\Else
\State \Return -1
\EndIf \Comment{now: $a \in [3, \dots, p-2]$}
\ElsIf{!$\Call{isPrime}{a}$} \Comment{rule (II)}
\State $p_1, p_2, \dots, p_n \gets \Call{Factorize}{a}$
\State \Return $\prod_{i=1}^n \Call{CalculateLegendre}{p_i, p}$
\Else \Comment{now: $a \in \mathbb{P}, \sqrt{p-2} \geq a \geq 3$}
\If{$\frac{p-1}{2} \equiv 0 \mod 2$ or $\frac{a-1}{2} \equiv 0 \mod 2$}
\State \Return $\Call{CalculateLegendre}{p, a}$
\Else
\State \Return $(-1) \cdot \Call{CalculateLegendre}{p, a}$
\EndIf
\EndIf
\EndProcedure
\end{algorithmic}
\caption{Calculate Legendre symbol}
\label{alg:calculateLegendreSymbol}
\end{algorithm}
\end{preview}
\end{document}