This commit is contained in:
flyingscorpio@pinebookpro 2022-01-17 11:25:04 +01:00
parent 4e93f9d9ac
commit 249726239a

View file

@ -197,9 +197,138 @@
On a donc~:
\begin{align*}
a \times u + b \times v &= 1 \\
a \times u + b \times v &= \mathrm{pgcd}(a,b) \\
247 \times 51 + 134 \times (-94) &= 1 \\
12597 - 12596 &= 1
\end{align*}
\subsection{L'ensemble $\frac{\mathbb{Z}}{n\mathbb{Z}}$}
$\mathbb{N}, \mathbb{Z}, \mathbb{Q}, \mathbb{R}, \mathbb{C}$
Choisissons $n \geq 2$.
$r$ est le reste de la division euclidienne de $a$ par $n$.
On peut regrouper les nombres qui ont le même reste quand ils sont divisés par $n$.
Par exemple, pour $n=11$~:
\begin{align*}
a &= 5 &r = 5 \\
a &= 14 &r =3 \\
a &= 16 &r = 5 \\
a &= 27 &r = 5
\end{align*}
Il y a 11 restes possibles (de 0 à 10), donc 11 ``familles'' de nombres.
Famille pour $r=5 : \{5, 16, 27, \ldots\}$.
On note cette famille $\overline{5}$.
\begin{equation*}
\frac{\mathbb{Z}}{11\mathbb{Z}} = \{
\overline{0},
\overline{1},
\overline{2},
\overline{3},
\overline{4},
\overline{5},
\overline{6},
\overline{7},
\overline{8},
\overline{9},
\overline{10}
\}
\end{equation*}
$\frac{\mathbb{Z}}{n\mathbb{Z}}$ possède $n$ éléments, de $\overline{0}$ à $\overline{n - 1}$.
Calculs dans $\frac{\mathbb{Z}}{n\mathbb{Z}}$~: modulo $n$.
Addition~: $\oplus$~:
\begin{equation*}
\overline{a}\oplus\overline{b} = \overline{(a + b)[n]}
\end{equation*}
Multiplication~: $\otimes$~:
\begin{equation*}
\overline{a}\otimes\overline{b} = \overline{(a \times b)[n]}
\end{equation*}
Au sens formel, la soustraction et la division n'existent pas.
La soustraction n'est que l'addition avec son opposé.
La division n'est que la multiplication avec son inverse.
Pour $n=14$~: $\left(\frac{\mathbb{Z}}{14\mathbb{Z}}, \oplus, \otimes\right)$
\begin{align*}
\overline{1} \oplus \overline{8} &= \overline{9} \\
\overline{5} \oplus \overline{11} &= \textcolor{red}{\overline{16}} = \overline{16[14]} = \overline{2} &\quad \text{ on ne note pas } \overline{16} \text{ car on n'a que jusqu'à } \overline{13} \\
\overline{3} \oplus \overline{11} &= \overline{0} &\quad \overline{3} \text{ et } \overline{11} \text{ sont opposés } \\
\text{quel est l'opposé de } \overline{6} \text{~? C'est } \overline{8} : \\
\overline{6} \oplus \overline{8} &= \overline{0} \\
\\
\overline{0} \otimes \overline{12} &= \overline{0} \\
\overline{3} \otimes \overline{3} &= \overline{9} \\
\overline{7} \otimes \overline{3} &= \overline{7} \\
\overline{6} \otimes \overline{7} &= \overline{42[14]} = \overline{0} \\
\overline{13} \otimes \overline{13} &= \overline{1} & \overline{13} \text{ est l'inverse de } \overline{13} \\
\overline{3} \otimes \overline{5} &= \overline{1} & \overline{3} \text{ est l'inverse de } \overline{5} \\
& & \overline{5} \text{ est l'inverse de } \overline{3} \\
\overline{6} \text{ et } \overline{7} \text{ n'ont pas d'inverse dans } \frac{\mathbb{Z}}{14\mathbb{Z}}
\end{align*}
Comment savoir si un élément a un inverse~?
\begin{equation*}
\text{dans } \frac{\mathbb{Z}}{n\mathbb{Z}}, \overline{a} \text{ est inversible } \implies \mathrm{pgcd}(a,n) = 1
\end{equation*}
Exemples~:
Pour $n=7$~: \hfill
\begin{tabularx}{0.6\linewidth}{YYY}
\toprule
Élément & PGCD & Inverse~? \\
\toprule
$\overline{0}$ & 0 & non \\
\midrule
$\overline{1}$ & 1 & oui \\
\midrule
$\overline{2}$ & 1 & oui \\
\midrule
$\overline{3}$ & 1 & oui \\
\midrule
$\overline{4}$ & 1 & oui \\
\midrule
$\overline{5}$ & 1 & oui \\
\midrule
$\overline{6}$ & 1 & oui \\
\bottomrule
\end{tabularx}
Pour $n=10$~: \hfill
\begin{tabularx}{0.6\linewidth}{YYY}
\toprule
Élément & PGCD & Inverse~? \\
\toprule
$\overline{0}$ & 0 & jamais \\
\midrule
$\overline{1}$ & 1 & toujours \\
\midrule
$\overline{2}$ & 2 & non \\
\midrule
$\overline{3}$ & 1 & oui \\
\midrule
$\overline{4}$ & 2 & non \\
\midrule
$\overline{5}$ & 5 & non \\
\midrule
$\overline{6}$ & 2 & non \\
\midrule
$\overline{7}$ & 1 & oui \\
\midrule
$\overline{8}$ & 2 & non \\
\midrule
$\overline{9}$ & 1 & toujours \\
\bottomrule
\end{tabularx}
\end{document}