Skip to content

Commit ed2d87f

Browse files
committed
Make CSS compatible with dark reader. Fix grammer.
1 parent 4c07c4f commit ed2d87f

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

posts/linear-systems-mod-n.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -670,10 +670,12 @@ $$
670670

671671
We are lucky here, because we can eliminate the 3 in the second column directly.
672672
In general this need not happen.
673-
We would then have to do the same procedure but with column operations, which might make entries in the row reappear.
673+
We would then have to do the same procedure but with column operations,
674+
which might make entries in the row reappear.
674675
This is not a problem, however.
675-
Important is, that the diagonal entry, which is also the pivot, is getting smaller
676-
in each iteration, so eventually we will be able to use it to eliminate both the row and column.
676+
The only thing that is important, is that the diagonal entry, which is also the pivot,
677+
is getting smaller in each iteration.
678+
So eventually we will be able to use it to eliminate both the row and column.
677679
Nevertheless, in this instance we can now use a single column operations to eliminate the 3.
678680

679681
$$

posts/perm-poly.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ and subtracting the result from $F$.
376376
We can reduce the other coefficients of $F$ in a similar way.
377377
Let $l_i$ be the leading coefficient of $P_i$, i.e.$$l_i=\frac{n}{\gcd(n, i!)}$$
378378
which is a power of two.
379-
We can reduce the coefficient $a_i$ into the range $0\leq a_i\leq l_i$ by multiplying $P_i$ by $\lfloor \frac{a_i}{l_i}\rfloor$
379+
We can reduce the coefficient $a_i$ into the range $0\leq a_i < l_i$ by multiplying $P_i$ by $\lfloor \frac{a_i}{l_i}\rfloor$
380380
and subtracting the result from $F$.
381381

382382
<div class="theorem">
@@ -423,7 +423,7 @@ But we wanted $2^c$ factors of two, i.e. an additional one, which $(w+2)!$ obvio
423423
# Inverting Binary Permutation Polynomials
424424
Let $P\in\P$ be a permutation polynomial.
425425
It is not immediately clear that the inverse permutation $p^{-1}$ is even representable by a polynomial.
426-
To see that it is, consider the group of all permutations on $n$ Elements $S_n$.
426+
To see that it is, consider the group of all permutations on $n$ elements $S_n$.
427427
We have $p^{-1}=p^{m-1}$ where $m$ is the order of $p$,
428428
i.e. the order of the subgroup generated by $p$, $m=|\langle p\rangle|$.
429429
Note that $p^n$ in this context isn't the product $p\cdot\ldots\cdot p$,
@@ -595,7 +595,7 @@ results from [Part 2](/posts/linear-systems-mod-n).
595595

596596
I assume the idea is well-known, so I will go over it quickly.
597597
We have to choose the degree of the polynomial beforehand.
598-
Usually (i.e. over a field) $\deg P = m-1$, as this results in a system with a unique solution,
598+
Usually, (i.e. over a field), $\deg P = m-1$, as this results in a system with a unique solution,
599599
but in our case, we know that for any polynomial there is a reduced polynomial with $\deg P < d$,
600600
so we can always choose $\deg P = d-1$.
601601

styles/global.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
--selection: #303030;
3838
}
3939

40-
html,
41-
body {
40+
html {
4241
padding: 0;
4342
margin: 0;
4443
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu,

0 commit comments

Comments
 (0)