summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--math/lgsFp.cpp27
-rw-r--r--math/math.tex7
-rw-r--r--math/modExp.cpp7
-rw-r--r--math/multInv.cpp5
4 files changed, 46 insertions, 0 deletions
diff --git a/math/lgsFp.cpp b/math/lgsFp.cpp
new file mode 100644
index 0000000..e42e4ab
--- /dev/null
+++ b/math/lgsFp.cpp
@@ -0,0 +1,27 @@
+void normalLine(ll n, ll line, ll p) { //normalisiert Zeile line
+ ll factor = multInv(mat[line][line], p); //Implementierung von oben
+ for (ll i = 0; i <= n; i++) {
+ mat[line][i] *= factor;
+ mat[line][i] %= p;
+ }
+}
+
+void takeAll(ll n, ll line, ll p) { //zieht Vielfaches von line von allen anderen Zeilen ab
+ for (ll i = 0; i < n; i++) {
+ if (i == line) continue;
+ ll diff = mat[i][line]; //abziehen
+ for (ll j = 0; j <= n; j++) {
+ mat[i][j] -= (diff * mat[line][j]) % p;
+ while (mat[i][j] < 0) {
+ mat[i][j] += p;
+ }
+ }
+ }
+}
+
+void gauss(ll n, ll p) { //n x n+1-Matrix, Koerper F_p
+ for (ll line = 0; line < n; line++) {
+ normalLine(n, line, p);
+ takeAll(n, line, p);
+ }
+} \ No newline at end of file
diff --git a/math/math.tex b/math/math.tex
index f82ab65..db42b74 100644
--- a/math/math.tex
+++ b/math/math.tex
@@ -15,6 +15,13 @@ Sei $0 \leq x < n$. Definiere $d := gcd(x, n)$.
\end{itemize}
\item[Falls $d \neq 1$:] es existiert kein $x^{-1}$
\end{description}
+\lstinputlisting{math/multInv.cpp}
+
+\subsubsection{Mod-Exponent über $\mathbb{F}_p$}
+\lstinputlisting{math/modExp.cpp}
+
+\subsection{LGS über $\mathbb{F}_p$}
+\lstinputlisting{math/lgsFp.cpp}
\subsection{Binomialkoeffizienten}
\lstinputlisting{math/binomial.cpp} \ No newline at end of file
diff --git a/math/modExp.cpp b/math/modExp.cpp
new file mode 100644
index 0000000..f738268
--- /dev/null
+++ b/math/modExp.cpp
@@ -0,0 +1,7 @@
+ll modPow(ll b, ll e, ll p) {
+ if (e == 0) return 1;
+ if (e == 1) return b;
+ ll half = modPow(b, e / 2, p), res = (half * half) % p;
+ if (e & 1) res *= b; res %= p;
+ return res;
+} \ No newline at end of file
diff --git a/math/multInv.cpp b/math/multInv.cpp
new file mode 100644
index 0000000..f9db815
--- /dev/null
+++ b/math/multInv.cpp
@@ -0,0 +1,5 @@
+ll multInv(ll n, ll p) { //berechnet das multiplikative Inverse von n in F_p
+ extendedEuclid(n, p); //implementierung von oben
+ x += ((x / p) + 1) * p;
+ return x % p;
+} \ No newline at end of file