File tree Expand file tree Collapse file tree 4 files changed +515
-4
lines changed
Expand file tree Collapse file tree 4 files changed +515
-4
lines changed Original file line number Diff line number Diff line change 11import { defineConfig } from 'vitepress'
22import { withSidebar } from 'vitepress-sidebar' ;
33import { withMermaid } from "vitepress-plugin-mermaid" ;
4+ import { maths } from 'markdown-it-mathjax3' ;
45
56// https://vitepress.dev/reference/site-config
67const 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' ,
Original file line number Diff line number Diff 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
1125On 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
You can’t perform that action at this time.
0 commit comments