Preuve pas inductions

This commit is contained in:
Debucquoy Anthony 2023-04-21 00:04:29 +02:00
parent d99b3c44f1
commit d47b4aafe6
Signed by: tonitch
GPG Key ID: A78D6421F083D42E
3 changed files with 21 additions and 0 deletions

View File

@ -32,6 +32,7 @@
- [Initiation à la théorie des graphe](./math/disc/graph.md)
- [Nombres Premiers](./math/disc/prime.md)
- [Les Relations](./math/disc/relations.md)
- [Preuve par Induction](./math/disc/induction.md)
# Physique générale I
- [Mecanique](./phys/meca/index.md)
- [Chapitre 1](./phys/meca/chap1.md)

View File

@ -29,3 +29,4 @@ Nous avons vu les fonctions:
- Soit \\( L: V_1 \to V_2 \\) Une application Linéaire
- \\( Ker(L) = \\{ v \in V_1 \mid L(v)=0 \\} \\) Noyau de L
- \\( Im(L) = \\{ v \in V_2 \mid \exists u \in V_1 \quad L(u) = v \\} \\) Image de L

View File

@ -0,0 +1,19 @@
# Preuve par induction
Le but est de prouver les propriètés du type:
\\[
\forall n \in \mathbb{N} \quad P(n)
\\]
## Induction Faible
1) Cas de base: \\( P(0) \\)
2) Cas général: \\( \forall n \in \mathbb{N} \quad P(n) \implies P(n+1) \\)
3) Conclusion: \\( \forall n \in \mathbb{N} \quad P(n) \\)
## Induction Forte
1) Cas de base: \\( P(0) ... P(n) \\) (à déterminer en fonction du cas général)
2) Cas général: \\( \forall n \in \mathbb{N} \quad P(0) \land ... \land P(n) \implies P(n+1) \\)
3) Conclusion: \\( \forall n \in \mathbb{N} \quad P(n) \\)