adding start mod 10 feb

This commit is contained in:
Debucquoy Anthony 2023-02-16 22:48:30 +01:00
parent ab4d6c8280
commit 8da6a8e7ee
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
2 changed files with 18 additions and 0 deletions

View File

@ -28,6 +28,7 @@
- [Les Espaces Vectoriels](./math/all/chap1.md)
- [Math Discrète](./math/disc/index.md)
- [Initiation à la théorie des graphe](./math/disc/graph.md)
- [Mathématique modulaire](./math/disc/mod.md)
# Physique générale I
- [Mecanique](./phys/meca/index.md)
- [Chapitre 1](./phys/meca/chap1.md)

17
src/math/disc/mod.md Normal file
View File

@ -0,0 +1,17 @@
# Mathématique modulaire
- Soient \\(a, b \in \mathbb{Z}\\) avec \\(a \neq 0\\)
- On dit que \\( a \\) **divise** \\( b \\) noté \\( a | b \\)
- ssi \\( \exists c \in \mathbb{Z} b=ac \\)
- On dit également que b est un multiple de a
## Algorithme de division d'euclide
- Soient \\( a \in \mathbb{Z} \text{ et } d\in \mathbb{N} _ 0 \\)
- \\( \exists q, r \in \mathbb{Z} \quad 0 \leq r < d \quad a = dq + r\\)
\mathbb{R}
- Soient \\( a, b \in \mathbb{Z} \quad n \in \mathbb{N} _ 0 \\)
- On dit que \\( a \\) est **congru** à \\( b \\) modulo n
- ssi \\( n \vert (a - b) \\)
- On note \\( a \equiv_n b \\)