Skip to content

Commit ab00ec0

Browse files
committed
📝 Maths for ever
1 parent 61c54e7 commit ab00ec0

File tree

4 files changed

+515
-4
lines changed

4 files changed

+515
-4
lines changed

.vitepress/config.mts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { defineConfig } from 'vitepress'
22
import { withSidebar } from 'vitepress-sidebar';
33
import { withMermaid } from "vitepress-plugin-mermaid";
4+
import { maths } from 'markdown-it-mathjax3';
45

56
// https://vitepress.dev/reference/site-config
67
const vitePressConfigs = {
@@ -11,6 +12,7 @@ const vitePressConfigs = {
1112
light: 'catppuccin-mocha',
1213
dark: 'catppuccin-mocha',
1314
},
15+
math: true,
1416
container: {
1517
tipLabel: '💡 CONSEIL',
1618
warningLabel: '⚠️ ATTENTKON',

maths/index.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,23 @@ title: 🔢 Mathématiques
44

55
# 🪙 Les Justifications Essentielles
66

7+
## Suites
8+
- **Arithmétique** : $u_{n+1} = u_n + r$
9+
- **Géométrique** : $u_{n+1} = u_n × q$
10+
11+
12+
## Propriétés sur les limites
13+
14+
| $\lim_{x \to a} f(x) =$ | $\ell \in \mathbb{R}$ | $\ \ell \ne 0$ | $+\infty$ | $-\infty$| $0$ | $+\infty$ |
15+
|-------------------------|------------------------|----------------|-----------|----------|-------------|-----------|
16+
| $\lim_{x \to a} g(x) =$ | $\ell' \in \mathbb{R}$ | $\pm\infty$ | $+\infty$ | $-\infty$| $\pm\infty$ | $-\infty$ |
17+
| $\lim_{x \to a} f(x) + g(x) =$ | $\ell + \ell'$ | $\pm\infty$ | $+\infty$ | $-\infty$| $\pm\infty$ | **❌ F.I.** |
18+
| $\lim_{x \to a} f(x) × g(x) =$ | $\ell + \ell'$ | $\infty$ | $+\infty$ | $+\infty$| **❌ F.I.** | $-\infty$ |
19+
| $\lim_{x \to a} \frac{f(x)}{g(x)} =$ | $\frac{\ell}{\ell'}$ | $\infty$ | $0$ | $\infty$| **❌ F.I.** | **❌ F.I.** |
20+
721
## Variables Aléatoires
822

9-
## Loi Binomial
23+
## Loi Binomiale
1024

1125
On répète `X` fois, de manière **identique** et **indépendante** la même épreuve de Bernoulli (lancé de dé) **de succès** "obtenir `x`" de probabilité `x`.
1226

0 commit comments

Comments
 (0)