Compare commits

...

2 Commits

Author SHA1 Message Date
25534aabdf feat(1G_math): séquence sur les probabilités conditionnelles
All checks were successful
Publish content / push (push) Successful in 1m16s
Publish content / build (push) Successful in 1m59s
Publish content / deploy (push) Successful in 1m6s
2025-10-08 17:37:26 +02:00
018a986758 feat(1G_math): maj de la progression 2025-10-08 16:44:00 +02:00
17 changed files with 1048 additions and 62 deletions

Binary file not shown.

View File

@@ -0,0 +1,113 @@
\documentclass[a4paper,10pt]{article}
\usepackage{myXsim}
\author{Benjamin Bertrand}
\title{Probabilité conditionnelle - Cours}
\date{octobre 2025}
\pagestyle{empty}
\begin{document}
\maketitle
\section{Notations ensemblestes}
Soit $E$ un ensemble et $A$ et $B$ deux sous ensemble de $E$.
\begin{center}
\includegraphics[ scale=0.6 ]{./fig/ensembles}
\end{center}
\begin{multicols}{3}
\begin{itemize}[leftmargin=0.2cm]
\item \textbf{Complémentaire de $A$} contient tous les éléments qui n'ont pas les caractéristiques de $A$.
\begin{center}
\includegraphics[ scale=0.6 ]{./fig/Abar}
\end{center}
\item \textbf{Intersection de $A$ et $B$} contient tous les éléments qui ont les caractéristiques de $A$ \textbf{ET} de $B$.
\begin{center}
\includegraphics[ scale=0.6 ]{./fig/inter}
\end{center}
\item \textbf{Union de $A$ et $B$} contient tous les éléments qui ont les caractéristiques de $A$ \textbf{OU} de $B$.
\begin{center}
\includegraphics[ scale=0.6 ]{./fig/union}
\end{center}
\end{itemize}
\end{multicols}
\section{Probabilité et probabilités conditionnelles}
\begin{definition}[ Probabilités conditionnelles ]
Soit $A$ et $B$ deux ensembles de l'univers $E$ avec $A$ un ensemble non vide.
\noindent
La probabilité de $B$ sachant $A$ est noté $P_A(B)$ et est définie par
\[
P_A(B) = \frac{P(A\cap B)}{P(A)}
\]
\end{definition}
\begin{propriete}[Formule des effectifs]
\begin{minipage}{0.6\textwidth}
Dans le cas où l'univers $E$ est fini. On peut réécrire la formule précédente
Probabilités de l'évènement $B$ sachant $A$
\[
P_A(B) = \frac{\mbox{Effectif des éléments qui sont dans $A$ et $B$}}{\mbox{Effectifs des éléments qui sont dans $A$}} = \frac{\# A\cap B}{\#A}
\]
\end{minipage}
\hfill
\begin{minipage}{0.3\textwidth}
\includegraphics[ scale=0.6 ]{./fig/condi_A}
\end{minipage}
\end{propriete}
\vspace{-0.5cm}
\paragraph{Exemple}~\\
\begin{minipage}{0.5\linewidth}
On note
\[
A = \left\{ \mbox{Homme} \right\} \qquad
\]
\[
B = \left\{ \mbox{Employé} \right\} \qquad
\]
On choisit au hasard une personne de cette entreprise.
\end{minipage}
\begin{minipage}{0.5\linewidth}
\begin{tabular}{|*{4}{c|}}
\hline
& Homme & Femme & Total \\
\hline
Employé & 10 & 15 & 25 \\
\hline
Vacataire & 14 & 17 & 31 \\
\hline
Total & 24 & 32 & 56 \\
\hline
\end{tabular}
\end{minipage}
\begin{multicols}{2}
\[
P(A) = \cdots
\]
Interprétation:\dotfill
\[
P_A(B) = \cdots
\]
Interprétation:\dotfill
\end{multicols}
\afaire{}
\end{document}

View File

@@ -0,0 +1,501 @@
\begin{exercise}[subtitle={Mobilités}, step={1}, origin={???}, topics={ Probabilité Conditionnelles }, tags={Probabilité}, mode={\trainMode}]
On a réalisé une enquête dans un lycée où il y a \np{1200} élèves.
\begin{enumerate}
\begin{minipage}{0.45\textwidth}
\item Reproduire et compléter le tableau ci-contre avec les informations suivantes.
\begin{itemize}[leftmargin=*]
\item 42.5\% des élèves habitent en centre-ville.
\item 50\% des élèves utilisent les transports en commun et parmi eux, 75\% habitent en périphérie.
\item 180 utilisent la voiture dont 30 habitent en centre-ville.
\item 25\% des élèves viennent à pied.
\item Parmi les cyclistes, il a trois fois plus d'élèves qui habitent en périphérie qu'en centre-ville.
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}{0.45\textwidth}
\begin{tabular}{|c|c|c|c|}
\hline
& Centre-ville & Périphérie & Total \\
\hline
Voiture & & & \\
\hline
Vélo & & & \\
\hline
À pied & & & \\
\hline
Autre & & & \\
\hline
Total & & & \np{1200} \\
\hline
\end{tabular}
\end{minipage}
\item Avec les notations suivantes, décrire avec une phrase puis calculer l'effectif des ensembles
\[
A = \left\{ \mbox{habite en centre-ville} \right\} \qquad
B = \left\{ \mbox{utilise de vélo} \right\}
\]
\[
A \cap B \qquad A \cup B \qquad \overline{A} \qquad \overline{A}\cap B \qquad \overline{ A \cup B}
\]
\end{enumerate}
\end{exercise}
\begin{solution}
\begin{enumerate}
\item Tableau complété :
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
& Centre-ville & Périphérie & Total \\
\hline
Voiture & 30 & 150 & 180 \\
\hline
Vélo & 30 & 90 & 120 \\
\hline
À pied & 300 & 0 & 300 \\
\hline
Autre & 150 & 450 & 600 \\
\hline
Total & 510 & 690 & \np{1200} \\
\hline
\end{tabular}
\end{center}
\textit{Explications :}
\begin{itemize}
\item Total centre-ville : $1200 \times 0.425 = 510$
\item Total périphérie : $1200 - 510 = 690$
\item Autre (transports en commun) : $1200 \times 0.50 = 600$ dont $600 \times 0.75 = 450$ en périphérie et $150$ en centre-ville
\item Voiture : $180$ dont $30$ en centre-ville et $150$ en périphérie
\item À pied : $1200 \times 0.25 = 300$
\item Vélo : on note $x$ le nombre de cyclistes en centre-ville, alors $3x$ en périphérie
\item Total : $180 + 4x + 300 + 600 = 1200 \Rightarrow x = 30$
\item Pour à pied : centre-ville = $510 - 30 - 30 - 150 = 300$ et périphérie = $0$
\end{itemize}
\item Avec $A = \left\{ \mbox{habite en centre-ville} \right\}$ et $B = \left\{ \mbox{utilise le vélo} \right\}$
\begin{itemize}
\item $A \cap B$ : élèves qui habitent en centre-ville ET utilisent le vélo $\Rightarrow$ effectif = 30
\item $A \cup B$ : élèves qui habitent en centre-ville OU utilisent le vélo $\Rightarrow$ effectif = $510 + 120 - 30 = 600$
\item $\overline{A}$ : élèves qui n'habitent pas en centre-ville (habitent en périphérie) $\Rightarrow$ effectif = 690
\item $\overline{A} \cap B$ : élèves qui habitent en périphérie ET utilisent le vélo $\Rightarrow$ effectif = 90
\item $\overline{A \cup B}$ : élèves qui n'habitent pas en centre-ville ET n'utilisent pas le vélo $\Rightarrow$ effectif = $690 - 90 = 600$
\end{itemize}
\end{enumerate}
\end{solution}
\begin{exercise}[subtitle={Orientation}, step={2}, origin={Ma tête}, topics={ Probabilité Conditionnelles }, tags={Probabilité}, mode={\trainMode}]
On a fait une étude sur l'orientation des élèves en filière technologique et on a rassemblé les résultats dans le tableau ci-dessous
\begin{center}
\begin{tabular}{|*{4}{c|}|c|}
\hline
& STI2D & STMG & ST2S & total \\
\hline
Garçon & 11 & 10 & 22 & 43 \\
\hline
Fille & 5 & 20 & 10 & 35 \\
\hline
\hline
total & 16 & 30 & 32 & 78 \\
\hline
\end{tabular}
\end{center}
On note les ensembles suivants :
\begin{multicols}{3}
\begin{itemize}
\item G = "L'élève est un garçon"
\item F = "L'élève est une fille"
\item D = "Élève de STI2D"
\item M = "Élève de STMG"
\item S = "Élève de ST2S"
\end{itemize}
\end{multicols}
Calculer les quantités suivantes
\begin{multicols}{3}
\begin{enumerate}
\item $P(G \cap S)$
\item $P_G(S)$
\item $P(F \cap D)$
\item $P_D(F)$
\item $P(G \cup M)$
\item $P_F(M)$
\end{enumerate}
\end{multicols}
\end{exercise}
\begin{solution}
\begin{multicols}{3}
\begin{enumerate}
\item $P(G \cap S) = \dfrac{22}{78} = \dfrac{11}{39}$
\item $P_G(S) = \dfrac{22}{43}$
\item $P(F \cap D) = \dfrac{5}{78}$
\item $P_D(F) = \dfrac{5}{16}$
\item $P(G \cup M) = \dfrac{43 + 30 - 10}{78} = \dfrac{63}{78} = \dfrac{21}{26}$
\item $P_F(M) = \dfrac{20}{35} = \dfrac{4}{7}$
\end{enumerate}
\end{multicols}
\end{solution}
\begin{exercise}[subtitle={Impression de livres}, step={2}, origin={???}, topics={ Probabilité Conditionnelles }, tags={Probabilité}, mode={\trainMode}]
L'étude de la répartition des livres produits dans une imprimerie donne les résultats suivants
\begin{itemize}
\item 60\% sont des romans et un quart d'entre eux sont au format de non poche
\item 25\% sont des essais et un cinquième d'entre eux sont au format poche
\item le reste est constitué de livres de poésie. Et parmi ceux-là, deux tiers est au format poche.
\end{itemize}
\begin{enumerate}
\item Faire un tableau croisé des effectifs si l'on suppose que l'imprimerie fabrique au total 100 livres.
\item On choisit un livre au hasard, on note les évènements suivants
\[
P = \left\{ \mbox{le livre est au format poche} \right\} \qquad E = \left\{ \mbox{le livre est un essai} \right\}
\]
\begin{enumerate}
\item Calculer la probabilité des évènements $E$ et $P$.
\item Décrire avec une phrase puis calculer la probabilité de l'évènement $E\cap P$
\item Décrire avec une phrase puis calculer la probabilité de l'évènement $\overline{E}$
\end{enumerate}
\item Calculer la quantité $P_E(P)$ et interpréter le résultat.
\item Traduire en termes de probabilité la phrase "20\% des essais sont au format poche".
\end{enumerate}
\end{exercise}
\begin{solution}
\begin{enumerate}
\item Tableau croisé pour 100 livres :
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
& Poche & Non poche & Total \\
\hline
Romans & 45 & 15 & 60 \\
\hline
Essais & 5 & 20 & 25 \\
\hline
Poésie & 10 & 5 & 15 \\
\hline
Total & 60 & 40 & 100 \\
\hline
\end{tabular}
\end{center}
\textit{Détails :}
\begin{itemize}
\item Romans : $60$ dont $60 \times \frac{1}{4} = 15$ non poche et $45$ poche
\item Essais : $25$ dont $25 \times \frac{1}{5} = 5$ poche et $20$ non poche
\item Poésie : $100 - 60 - 25 = 15$ dont $15 \times \frac{2}{3} = 10$ poche et $5$ non poche
\end{itemize}
\item
\begin{enumerate}
\item $P(E) = \dfrac{25}{100} = \dfrac{1}{4}$ et $P(P) = \dfrac{60}{100} = \dfrac{3}{5}$
\item $E \cap P$ : le livre est un essai ET au format poche $\Rightarrow P(E \cap P) = \dfrac{5}{100} = \dfrac{1}{20}$
\item $\overline{E}$ : le livre n'est pas un essai $\Rightarrow P(\overline{E}) = 1 - \dfrac{1}{4} = \dfrac{3}{4}$
\end{enumerate}
\item $P_E(P) = \dfrac{5}{25} = \dfrac{1}{5}$
Interprétation : Parmi les essais, $\dfrac{1}{5}$ (soit 20\%) sont au format poche.
\item $P_E(P) = 0.20$ (probabilité qu'un essai soit au format poche)
\end{enumerate}
\end{solution}
\begin{exercise}[subtitle={Villes et voitures}, step={2}, origin={Le livre scolaire}, topics={ Probabilité Conditionnelles }, tags={Probabilité}, mode={\trainMode}]
Dans une ville A, 30 \% des habitants n'ont pas de voiture, contre 10 \% dans la ville B voisine et 16 \% dans la ville C. Or les habitants de A représentent 12 \% de cette agglomération, les habitants de la ville B en représentent 38 \% et ceux de C en représentent 50 \%.
On interroge un habitant de l'agglomération au hasard. Quelle est la probabilité qu'il vienne de la ville A et qu'il n'ait pas de voiture ? Même question pour les habitants de la ville B et C.
\end{exercise}
\begin{solution}
On note $A$, $B$ et $C$ les événements "l'habitant vient de la ville A (resp. B, C)" et $V$ l'événement "l'habitant n'a pas de voiture".
\begin{itemize}
\item $P(A \cap V) = P(A) \times P_A(V) = 0.12 \times 0.30 = 0.036$
La probabilité qu'un habitant vienne de la ville A et n'ait pas de voiture est $0.036$ soit $3.6\%$.
\item $P(B \cap V) = P(B) \times P_B(V) = 0.38 \times 0.10 = 0.038$
La probabilité qu'un habitant vienne de la ville B et n'ait pas de voiture est $0.038$ soit $3.8\%$.
\item $P(C \cap V) = P(C) \times P_C(V) = 0.50 \times 0.16 = 0.080$
La probabilité qu'un habitant vienne de la ville C et n'ait pas de voiture est $0.080$ soit $8\%$.
\end{itemize}
\end{solution}
\begin{exercise}[subtitle={Court de tennis}, step={3}, origin={???}, topics={ Probabilité Conditionnelles}, tags={Probabilité}, mode={\trainMode}]
Un club de tennis a effectué une étude statistique de l'occupation de ses terrains. Les résultats sont les suivants
\begin{itemize}
\item Lorsque l'heure est dite creuse, 20\% des terrains sont occupés.
\item Lorsque l'heure est dite pleine, 90\% des terrains sont occupés.
\end{itemize}
Le club avait décidé que 70\% des heures d'ouvertures seraient pleines.
\begin{enumerate}
\item Les terrains sont ouverts tous les jours de la semaine de 11h à 21h. Combien d'heures le club propose-t-il d'heures d'ouverture sur une semaine?
\item Faire le tableau des effectifs croisé correspondant à la situation.
\end{enumerate}
Dans la suite, on note $C = \left\{ \mbox{heure creuse} \right\}$ et $O = \left\{ \mbox{terrain occupé} \right\}$
\begin{enumerate}
\setcounter{enumi}{2}
\item Calculer puis interpréter $P(C)$ et $P(O)$
\item Calculer puis interpréter $P(C\cap O)$ et $P_O(C)$
\item Dans le but d'inciter ses clients de venir aux heures creuses. Le club a établi un tarif préférentiel. Une heure pleine coûte 10\euro tandis qu'une heure creuse coûte 6\euro. \\
Calculer la somme que peut espérer rapporter au club un terrain en une semaine.
\end{enumerate}
\end{exercise}
\begin{solution}
\begin{enumerate}
\item Nombre d'heures d'ouverture : $10$ heures par jour $\times$ $7$ jours $= 70$ heures par semaine
\item Tableau croisé (pour un terrain sur une semaine) :
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
& Heures creuses & Heures pleines & Total \\
\hline
Terrain occupé & 4.2 & 44.1 & 48.3 \\
\hline
Terrain libre & 16.8 & 4.9 & 21.7 \\
\hline
Total & 21 & 49 & 70 \\
\hline
\end{tabular}
\end{center}
\textit{Détails :}
\begin{itemize}
\item Heures pleines : $70 \times 0.70 = 49$ heures
\item Heures creuses : $70 \times 0.30 = 21$ heures
\item Terrain occupé en heures pleines : $49 \times 0.90 = 44.1$ heures
\item Terrain occupé en heures creuses : $21 \times 0.20 = 4.2$ heures
\end{itemize}
\item $P(C) = \dfrac{21}{70} = \dfrac{3}{10} = 0.30$
Interprétation : La probabilité qu'une heure choisie au hasard soit une heure creuse est de $30\%$.
$P(O) = \dfrac{48.3}{70} = \dfrac{483}{700} = 0.69$
Interprétation : La probabilité qu'un terrain choisi à une heure au hasard soit occupé est de $69\%$.
\item $P(C \cap O) = \dfrac{4.2}{70} = \dfrac{42}{700} = \dfrac{3}{50} = 0.06$
Interprétation : La probabilité qu'une heure soit creuse ET que le terrain soit occupé est de $6\%$.
$P_O(C) = \dfrac{4.2}{48.3} = \dfrac{42}{483} = \dfrac{14}{161} \approx 0.087$
Interprétation : Sachant que le terrain est occupé, la probabilité que ce soit une heure creuse est d'environ $8.7\%$.
\item Somme espérée par terrain pour une semaine :
\begin{align*}
E &= 44.1 \times 10 + 4.2 \times 6 \\
&= 441 + 25.2 \\
&= 466.2 \text{ euros}
\end{align*}
Un terrain peut rapporter en moyenne $466.20$\euro{} par semaine.
\end{enumerate}
\end{solution}
\begin{exercise}[subtitle={Dopage}, step={3}, origin={???}, topics={ Probabilité Conditionnelles}, tags={Probabilité}, mode={\trainMode}]
Lors d'un contrôle anti-dopage, les sportifs peuvent être déclarés positifs (qu'ils le soient ou pas) ou négatifs (qu'ils le soient ou pas). Les études pharmaceutiques du test anti-dopage ont montré que
\begin{itemize}
\item 95\% des sportifs dopés sont déclarés positifs.
\item 10\% des sportifs non dopés sont déclarés positifs.
\end{itemize}
\begin{enumerate}
\item Que signifie dans cette situation que "le comité a fait une erreur"? Quels sont les deux erreurs possibles?
\end{enumerate}
On fait un test sur 50 personnes. On ne connait pas le nombre de sportifs dopés. On voudrait le déterminer, on le note alors $n$.
\begin{enumerate}
\setcounter{enumi}{1}
\item Établir un tableau croisé des effectifs qui correspond à la situation.
\item Montrer que la probabilité qu'un sportif ayant été déclaré positif soit réellement dopé est de \[P_{\mbox{\tiny{Positif}}}(\mbox{Dopé}) = \dfrac{0.95n}{5+0.85n}\]
\item Résoudre l'équation $P_{\mbox{\tiny{Positif}}}(\mbox{Dopé}) > 0.95$ puis interpréter le résultat.
\end{enumerate}
\end{exercise}
\begin{solution}
\begin{enumerate}
\item "Le comité a fait une erreur" signifie que le test s'est trompé, c'est-à-dire :
\begin{itemize}
\item Soit un sportif dopé est déclaré négatif (faux négatif)
\item Soit un sportif non dopé est déclaré positif (faux positif)
\end{itemize}
\item Tableau croisé pour 50 personnes avec $n$ sportifs dopés :
\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline
& Dopé & Non dopé & Total \\
\hline
Positif & $0.95n$ & $0.1(50-n)$ & $0.85n + 5$ \\
\hline
Négatif & $0.05n$ & $0.9(50-n)$ & $45 - 0.85n$ \\
\hline
Total & $n$ & $50-n$ & $50$ \\
\hline
\end{tabular}
\end{center}
\item On cherche $P_{\mbox{\tiny{Positif}}}(\mbox{Dopé})$ :
\begin{align*}
P_{\mbox{\tiny{Positif}}}(\mbox{Dopé}) &= \dfrac{\mbox{nombre de dopés testés positif}}{\mbox{nombre total de positifs}} \\
&= \dfrac{0.95n}{0.85n + 5}
\end{align*}
\item Résolvons $P_{\mbox{\tiny{Positif}}}(\mbox{Dopé}) > 0.95$ :
\begin{align*}
\dfrac{0.95n}{0.85n + 5} &> 0.95 \\
0.95n &> 0.95(0.85n + 5) \\
0.95n &> 0.8075n + 4.75 \\
0.1425n &> 4.75 \\
n &> \dfrac{4.75}{0.1425} \\
n &> 33.33...
\end{align*}
Donc $n \geq 34$.
Interprétation : Pour que la probabilité qu'un sportif déclaré positif soit réellement dopé soit supérieure à $95\%$, il faut qu'au moins $34$ sportifs sur $50$ soient dopés, soit plus de $68\%$ de dopés dans la population testée. Cela montre que même avec un test très performant, si la prévalence du dopage est faible, beaucoup de positifs seront des faux positifs.
\end{enumerate}
\end{solution}
\begin{exercise}[subtitle={Tests Covid}, step={3}, origin={Ma tête}, topics={ Probabilité Conditionnelles }, tags={Probabilité}, mode={\trainMode}]
En 2020, on pouvait lire l'article suivant dans le monde.
Dans la suite on note $P=$"test positif" et $I=$"patient infecté".
\begin{enumerate}
% sensibilité = 70% et spécificité = 95%
\item Chercher dans l'article les valeurs de la sensibilité et de la spécificité du test Covid. Puis traduire ces valeurs en terme de probabilités.
\item On se place dans le premier cas où 1\% de la population est infecté.
\begin{minipage}{0.5\linewidth}
\begin{enumerate}
\item On étudie une population de 1000 individus. Compléter le tableau suivant
\item Calculer la probabilité que parmi les testés positifs, le patient soit réellement infecté.
\item Calculer la probabilité que parmi les testés négatif, le patient soit infecté.
\end{enumerate}
\end{minipage}
\begin{minipage}{0.5\linewidth}
\begin{tabular}{|*{3}{c|}c|}
\hline
& infecté & non infecté & total \\
\hline
Test positif & & & \\
\hline
Test négatif & & & \\
\hline
total & & & 1000 \\
\hline
\end{tabular}
\end{minipage}
\item Mêmes questions pour le cas où 10\% de la population est infectée.
\item Mêmes questions pour le cas où 30\% de la population est infectée.
\item Que pensez-vous de ces tests?
\end{enumerate}
\includegraphics[scale=0.6, angle=90]{./fig/resultat_test}
\end{exercise}
\begin{solution}
\begin{enumerate}
\item D'après l'article :
\begin{itemize}
\item Sensibilité : $70\%$ $\Rightarrow P_I(P) = 0.70$ (probabilité d'être testé positif sachant qu'on est infecté)
\item Spécificité : $95\%$ $\Rightarrow P_{\overline{I}}(\overline{P}) = 0.95$ (probabilité d'être testé négatif sachant qu'on n'est pas infecté)
On en déduit : $P_{\overline{I}}(P) = 1 - 0.95 = 0.05$ (probabilité d'être testé positif sachant qu'on n'est pas infecté)
\end{itemize}
\item \textbf{Cas 1 :} $1\%$ de la population infectée (1000 individus)
\begin{enumerate}
\item Tableau complété :
\begin{center}
\begin{tabular}{|*{3}{c|}c|}
\hline
& infecté & non infecté & total \\
\hline
Test positif & 7 & 49.5 & 56.5 \\
\hline
Test négatif & 3 & 940.5 & 943.5 \\
\hline
total & 10 & 990 & 1000 \\
\hline
\end{tabular}
\end{center}
\textit{Calculs :}
\begin{itemize}
\item Infectés : $1000 \times 0.01 = 10$
\item Non infectés : $1000 - 10 = 990$
\item Infectés testés positifs : $10 \times 0.70 = 7$
\item Infectés testés négatifs : $10 \times 0.30 = 3$
\item Non infectés testés positifs : $990 \times 0.05 = 49.5$
\item Non infectés testés négatifs : $990 \times 0.95 = 940.5$
\end{itemize}
\item $P_P(I) = \dfrac{7}{56.5} \approx 0.124$ soit environ $12.4\%$
Seulement 12\% des personnes testées positives sont réellement infectées !
\item $P_{\overline{P}}(I) = \dfrac{3}{943.5} \approx 0.003$ soit environ $0.3\%$
Un test négatif est très fiable : la personne a très peu de chances d'être infectée.
\end{enumerate}
\item \textbf{Cas 2 :} $10\%$ de la population infectée (1000 individus)
\begin{center}
\begin{tabular}{|*{3}{c|}c|}
\hline
& infecté & non infecté & total \\
\hline
Test positif & 70 & 45 & 115 \\
\hline
Test négatif & 30 & 855 & 885 \\
\hline
total & 100 & 900 & 1000 \\
\hline
\end{tabular}
\end{center}
\begin{itemize}
\item $P_P(I) = \dfrac{70}{115} \approx 0.609$ soit environ $60.9\%$
\item $P_{\overline{P}}(I) = \dfrac{30}{885} \approx 0.034$ soit environ $3.4\%$
\end{itemize}
\item \textbf{Cas 3 :} $30\%$ de la population infectée (1000 individus)
\begin{center}
\begin{tabular}{|*{3}{c|}c|}
\hline
& infecté & non infecté & total \\
\hline
Test positif & 210 & 35 & 245 \\
\hline
Test négatif & 90 & 665 & 755 \\
\hline
total & 300 & 700 & 1000 \\
\hline
\end{tabular}
\end{center}
\begin{itemize}
\item $P_P(I) = \dfrac{210}{245} \approx 0.857$ soit environ $85.7\%$
\item $P_{\overline{P}}(I) = \dfrac{90}{755} \approx 0.119$ soit environ $11.9\%$
\end{itemize}
\item \textbf{Conclusion :} Ces tests montrent que même avec un test moyennement performant (70\% de sensibilité et 95\% de spécificité), la fiabilité d'un résultat positif dépend fortement de la prévalence de la maladie dans la population :
\begin{itemize}
\item Avec 1\% d'infectés, un test positif n'a que 12.4\% de chances de correspondre à une vraie infection
\item Avec 10\% d'infectés, ce taux monte à 60.9\%
\item Avec 30\% d'infectés, ce taux atteint 85.7\%
\end{itemize}
Cela illustre l'importance du contexte épidémiologique dans l'interprétation des résultats de tests. Avec une faible prévalence, un test positif est très peu fiable. En revanche, un test négatif reste performant pour écarter l'infection : le risque d'être infecté malgré un test négatif est faible (0.3\% à 1\% de prévalence, 3.4\% à 10\%, et 11.9\% à 30\%).
\end{enumerate}
\end{solution}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

View File

@@ -0,0 +1,274 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07, custom)"
sodipodi:docname="ensembles.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.5077062"
inkscape:cx="342.38855"
inkscape:cy="247.1513"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
showguides="false"
inkscape:window-width="1920"
inkscape:window-height="1054"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="opacity:0.382969;fill:#0000ff;stroke:#000000;stroke-width:0.304881;stop-color:#000000"
id="rect863"
width="78.540085"
height="14.654474"
x="112.35032"
y="28.559233"
ry="4.5616803" />
<rect
style="opacity:0.382969;fill:#b3b3b3;stroke:#000000;stroke-width:0.2329;stop-color:#000000"
id="rect833"
width="88.035439"
height="46.106461"
x="6.1855693"
y="7.1176796"
ry="5.7131782" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="12.342381"
y="14.562019"
id="text837"><tspan
sodipodi:role="line"
id="tspan835"
x="12.342381"
y="14.562019"
style="stroke-width:0.264583">E</tspan></text>
<rect
style="opacity:0.382969;fill:#ff0000;stroke:#000000;stroke-width:0.312887;stop-color:#000000"
id="rect839"
width="23.032158"
height="38.189877"
x="25.814392"
y="11.452538"
ry="5.5030832" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="29.626511"
y="17.945637"
id="text843"><tspan
sodipodi:role="line"
id="tspan841"
x="29.626511"
y="17.945637"
style="stroke-width:0.264583">A</tspan></text>
<rect
style="opacity:0.382969;fill:#0000ff;stroke:#000000;stroke-width:0.304881;stop-color:#000000"
id="rect845"
width="78.540085"
height="14.654474"
x="10.111814"
y="30.473827"
ry="4.5616803" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="13.073805"
y="38.849197"
id="text849"><tspan
sodipodi:role="line"
id="tspan847"
x="13.073805"
y="38.849197"
style="stroke-width:0.264583">B</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="114.58089"
y="12.647426"
id="text855"><tspan
sodipodi:role="line"
id="tspan853"
x="114.58089"
y="12.647426"
style="stroke-width:0.264583">E</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="131.86502"
y="16.031042"
id="text861"><tspan
sodipodi:role="line"
id="tspan859"
x="131.86502"
y="16.031042"
style="stroke-width:0.264583">A</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="115.31231"
y="36.934605"
id="text867"><tspan
sodipodi:role="line"
id="tspan865"
x="115.31231"
y="36.934605"
style="stroke-width:0.264583">B</tspan></text>
<rect
style="opacity:0.382969;fill:#ff0000;stroke:#000000;stroke-width:0.312888;stop-color:#000000"
id="rect839-7"
width="23.032158"
height="38.189877"
x="128.28906"
y="9.442317"
ry="5.5030832" />
<path
id="rect851"
style="opacity:0.69714844;fill:#00ff00;stroke:#000000;stroke-width:0.880252;stop-color:#000000"
d="M 431.38477 19.666016 C 419.42218 19.666016 409.79102 29.295226 409.79102 41.257812 L 409.79102 172.33203 C 409.79102 184.29462 419.42218 193.92578 431.38477 193.92578 L 720.93164 193.92578 C 732.89422 193.92578 742.52344 184.29462 742.52344 172.33203 L 742.52344 41.257812 C 742.52344 29.295226 732.89422 19.666016 720.93164 19.666016 L 431.38477 19.666016 z M 504.7793 36.048828 L 550.23047 36.048828 C 561.75311 36.048828 571.0293 45.32498 571.0293 56.847656 L 571.0293 159.58984 C 571.0293 171.11252 561.75311 180.38867 550.23047 180.38867 L 504.7793 180.38867 C 493.25661 180.38867 483.97852 171.11252 483.97852 159.58984 L 483.97852 56.847656 C 483.97852 45.32498 493.25661 36.048828 504.7793 36.048828 z "
transform="scale(0.26458333)" />
<rect
style="opacity:0.382969;fill:#b3b3b3;stroke:#000000;stroke-width:0.2329;stop-color:#000000"
id="rect833-6"
width="88.035439"
height="46.106461"
x="8.8498955"
y="60.605553"
ry="5.7131782" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="15.006706"
y="68.049896"
id="text837-3"><tspan
sodipodi:role="line"
id="tspan835-1"
x="15.006706"
y="68.049896"
style="stroke-width:0.264583">E</tspan></text>
<rect
style="opacity:0.382969;fill:#ff0000;stroke:#000000;stroke-width:0.312888;stop-color:#000000"
id="rect839-75"
width="23.032158"
height="38.189877"
x="28.478718"
y="64.940414"
ry="5.5030832" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="32.290836"
y="71.43351"
id="text843-9"><tspan
sodipodi:role="line"
id="tspan841-6"
x="32.290836"
y="71.43351"
style="stroke-width:0.264583">A</tspan></text>
<rect
style="opacity:0.382969;fill:#0000ff;stroke:#000000;stroke-width:0.304882;stop-color:#000000"
id="rect845-2"
width="78.540085"
height="14.654474"
x="12.776138"
y="83.9617"
ry="4.5616803" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="15.738129"
y="92.337074"
id="text849-1"><tspan
sodipodi:role="line"
id="tspan847-7"
x="15.738129"
y="92.337074"
style="stroke-width:0.264583">B</tspan></text>
<path
id="rect839-75-8"
style="opacity:0.78253906;fill:#00ff00;stroke:#000000;stroke-width:0.312888;stop-color:#000000"
d="m 28.462112,83.883022 v 13.665317 c 0,0.337981 0.03161,0.668244 0.0894,0.989086 h 22.85287 c 0.05779,-0.320842 0.08992,-0.651105 0.08992,-0.989086 V 83.883022 Z" />
<rect
style="opacity:0.382969;fill:#b3b3b3;stroke:#000000;stroke-width:0.2329;stop-color:#000000"
id="rect833-5"
width="88.035439"
height="46.106461"
x="112.166"
y="61.70715"
ry="5.7131782" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="118.32281"
y="69.151489"
id="text837-7"><tspan
sodipodi:role="line"
id="tspan835-4"
x="118.32281"
y="69.151489"
style="stroke-width:0.264583">E</tspan></text>
<path
id="rect839-1"
style="opacity:0.6215625;fill:#00ff00;stroke:#000000;stroke-width:1.18257;stop-color:#000000"
d="M 518.92188 249.60742 C 507.39923 249.60742 498.12305 258.88357 498.12305 270.40625 L 498.12305 321.5 L 456.01562 321.5 C 446.46412 321.5 438.77344 329.18873 438.77344 338.74023 L 438.77344 359.64453 C 438.77344 369.19604 446.46412 376.88672 456.01562 376.88672 L 498.46094 376.88672 C 500.2133 386.6118 508.67701 393.94727 518.92188 393.94727 L 564.37305 393.94727 C 574.61795 393.94727 583.08163 386.6118 584.83398 376.88672 L 718.37695 376.88672 C 727.92846 376.88672 735.61914 369.19604 735.61914 359.64453 L 735.61914 338.74023 C 735.61914 329.18873 727.92846 321.5 718.37695 321.5 L 585.17383 321.5 L 585.17383 270.40625 C 585.17383 258.88357 575.89573 249.60742 564.37305 249.60742 L 518.92188 249.60742 z "
transform="scale(0.26458333)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="135.60695"
y="72.535103"
id="text843-8"><tspan
sodipodi:role="line"
id="tspan841-5"
x="135.60695"
y="72.535103"
style="stroke-width:0.264583">A</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="119.05424"
y="93.438667"
id="text849-7"><tspan
sodipodi:role="line"
id="tspan847-5"
x="119.05424"
y="93.438667"
style="stroke-width:0.264583">B</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@@ -0,0 +1,62 @@
Probabilité conditionnelle
##########################
:date: 2025-10-13
:modified: 2025-10-13
:authors: Benjamin Bertrand
:tags: conditionnelle, probabilité
:category: 1G_math
:summary: Définition de la probabilité conditionnelle et manipulation des tableaux à double entrée
Éléments du programme
=====================
Contenus
--------
- Probabilité conditionnelle dun événement B sachant un événement A de probabilité non nulle. Notation PA(B). Indépendance de deux événements.
Capacités attendues
-------------------
- Construire un tableau en lien avec une situation donnée. Passer du registre de la langue naturelle au registre symbolique et inversement.
- Utiliser un tableau pour calculer une probabilité.
- Calculer des probabilités conditionnelles lorsque les événements sont présentés sous forme de tableau croisé deffectifs (tirage au sort avec équiprobabilité dun individu dans une population).
- Distinguer en situation PA(B) et PB(A), par exemple dans des situations de type « faux positifs ».
Commentaires
------------
Séquence très rapide autour des probabilités.
Progression
===========
Plan de travail
.. image:: ./plan_de_travail.pdf
:height: 200px
:alt: Plan de travail
Solutions
.. image:: ./solutions.pdf
:height: 200px
:alt: solutions
Cours:
.. image:: ./1B_notations.pdf
:height: 200px
:alt: Notation et probabilités conditionnelles
Étape 1: Construire un tableau croisé
-------------------------------------
Étape 2: Calculer des probabilités conditionnelles
--------------------------------------------------
Étape 3: Mise en pratique
-------------------------

View File

@@ -0,0 +1,48 @@
\documentclass[a4paper,12pt]{article}
\usepackage{myXsim}
\author{Benjamin Bertrand}
\title{Probabilité conditionnelle - Plan de travail}
\tribe{1G math}
\date{octobre 2025}
\pagestyle{empty}
\DeclareExerciseCollection{banque}
\xsimsetup{
}
\begin{document}
\maketitle
% Résumé
\bigskip
Savoir-faire de la séquence
\begin{itemize}
\item
\end{itemize}
\section{Tableau croisé et ensemble}
\listsectionexercises
\section{Probabilité conditionnelle}
\listsectionexercises
\section{Cas pratiques}
\listsectionexercises
\bigskip
\hline
\input{exercises.tex}
\printcollection{banque}
\end{document}

Binary file not shown.

View File

@@ -0,0 +1,28 @@
\documentclass[a4paper,10pt]{article}
\usepackage{myXsim}
\usetikzlibrary{shapes.geometric}
\author{Benjamin Bertrand}
\title{Probabilité conditionnelle - Solutions}
\tribe{1G math}
\date{octobre 2025}
\DeclareExerciseCollection{banque}
\xsimsetup{
exercise/print=false,
solution/print=true,
}
\pagestyle{empty}
\begin{document}
\maketitle
\input{exercises.tex}
%\printcollection{banque}
%\printsolutions{exercises}
\end{document}

View File

@@ -1,6 +1,6 @@
<mxfile host="Electron" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/28.0.6 Chrome/138.0.7204.185 Electron/37.2.6 Safari/537.36" version="28.0.6"> <mxfile host="Electron" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/28.1.2 Chrome/138.0.7204.251 Electron/37.5.1 Safari/537.36" version="28.1.2">
<diagram name="Page-1" id="F5UjD-FVJ69Ou2XtIyAO"> <diagram name="Page-1" id="F5UjD-FVJ69Ou2XtIyAO">
<mxGraphModel dx="2951" dy="1817" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0"> <mxGraphModel dx="1527" dy="939" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root> <root>
<mxCell id="0" /> <mxCell id="0" />
<mxCell id="1" parent="0" /> <mxCell id="1" parent="0" />
@@ -10,7 +10,7 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-255" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="FoqjGGwg7NdL9CHn8AbM-254" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-255" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;strokeColor=inherit;top=0;left=0;bottom=0;right=0;collapsible=0;dropTarget=0;fillColor=none;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;fontSize=16;" parent="FoqjGGwg7NdL9CHn8AbM-254" vertex="1">
<mxGeometry width="2380" height="206" as="geometry" /> <mxGeometry width="2380" height="206" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-256" value="Période 1 (7s)" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="FoqjGGwg7NdL9CHn8AbM-255" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-256" value="s" style="shape=partialRectangle;html=1;whiteSpace=wrap;connectable=0;strokeColor=inherit;overflow=hidden;fillColor=none;top=0;left=0;bottom=0;right=0;pointerEvents=1;fontSize=16;" parent="FoqjGGwg7NdL9CHn8AbM-255" vertex="1">
<mxGeometry width="307" height="206" as="geometry"> <mxGeometry width="307" height="206" as="geometry">
<mxRectangle width="307" height="206" as="alternateBounds" /> <mxRectangle width="307" height="206" as="alternateBounds" />
</mxGeometry> </mxGeometry>
@@ -467,16 +467,8 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-15" value="Item 3" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-12" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-15" value="Item 3" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-12" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-16" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-17" target="FoqjGGwg7NdL9CHn8AbM-22" edge="1">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="810" y="1220" />
<mxPoint x="1480" y="1220" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-17" value="Poly - Forme et graph" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#3E6E0F;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-17" value="Poly - Forme et graph" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#3E6E0F;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="740" y="1040" width="140" height="120" as="geometry" /> <mxGeometry x="740" y="1040" width="140" height="150" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-18" value="Représentaion graphique et algébrique" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-17" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-18" value="Représentaion graphique et algébrique" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-17" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
@@ -487,27 +479,8 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-20" value="Role de a" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-17" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-20" value="Role de a" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-17" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-281" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-22" target="FoqjGGwg7NdL9CHn8AbM-27" edge="1"> <mxCell id="t-Bm_utvmgTPmWsKrZoX-1" value="Formes dev/facto/cano" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" vertex="1" parent="FoqjGGwg7NdL9CHn8AbM-17">
<mxGeometry relative="1" as="geometry"> <mxGeometry y="120" width="140" height="30" as="geometry" />
<Array as="points">
<mxPoint x="1480" y="1390" />
<mxPoint x="1680" y="1390" />
<mxPoint x="1680" y="1240" />
<mxPoint x="2060" y="1240" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-22" value="Poly - Dev / cano" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#3E6E0F;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="1410" y="1250" width="140" height="120" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-23" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-22" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-24" value="Item 2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-22" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-25" value="Item 3" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-22" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-26" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-27" target="FoqjGGwg7NdL9CHn8AbM-31" edge="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-26" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-27" target="FoqjGGwg7NdL9CHn8AbM-31" edge="1">
<mxGeometry relative="1" as="geometry"> <mxGeometry relative="1" as="geometry">
@@ -551,7 +524,7 @@
</mxGeometry> </mxGeometry>
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-36" value="Deriv - Taux variations" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#83E820;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-36" value="Deriv - Taux variations" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#83E820;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="1241" y="1049" width="140" height="120" as="geometry" /> <mxGeometry x="1280" y="1040" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-37" value="Taux de variation" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-36" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-37" value="Taux de variation" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-36" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
@@ -562,7 +535,7 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-39" value="Tangente" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-36" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-39" value="Tangente" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-36" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-42" value="Deriv - Fonction derivée" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#83E820;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-42" value=",," style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#83E820;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="670" y="1250" width="140" height="120" as="geometry" /> <mxGeometry x="670" y="1250" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-43" value="Fonction dérivée" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-42" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-43" value="Fonction dérivée" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-42" vertex="1">
@@ -594,7 +567,7 @@
<mxPoint x="760" y="2180" as="sourcePoint" /> <mxPoint x="760" y="2180" as="sourcePoint" />
</mxGeometry> </mxGeometry>
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-52" value="Exp - Modéliation" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#2A4A0A;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-52" value="Exp - Définition" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#2A4A0A;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="480" y="1465.5" width="140" height="120" as="geometry" /> <mxGeometry x="480" y="1465.5" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-53" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-52" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-53" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-52" vertex="1">
@@ -733,12 +706,13 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-277" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-94" target="FoqjGGwg7NdL9CHn8AbM-98" edge="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-277" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-94" target="FoqjGGwg7NdL9CHn8AbM-98" edge="1">
<mxGeometry relative="1" as="geometry"> <mxGeometry relative="1" as="geometry">
<Array as="points"> <Array as="points">
<mxPoint x="1170" y="1680" /> <mxPoint x="1470" y="1810" />
<mxPoint x="1500" y="1810" />
</Array> </Array>
</mxGeometry> </mxGeometry>
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-94" value="VA - loi d&#39;une va" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-94" value="VA - loi d&#39;une va" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1100" y="1250" width="140" height="120" as="geometry" /> <mxGeometry x="1420" y="1650" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-95" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-94" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-95" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-94" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
@@ -750,7 +724,7 @@
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-98" value="VA - esp variance" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-98" value="VA - esp variance" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1320" y="1680" width="140" height="120" as="geometry" /> <mxGeometry x="1430" y="1870" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-99" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-98" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-99" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-98" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
@@ -767,46 +741,31 @@
<mxCell id="FoqjGGwg7NdL9CHn8AbM-102" value="Condi - tableau croisé" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#9E0054;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-102" value="Condi - tableau croisé" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#9E0054;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="1040" width="140" height="120" as="geometry" /> <mxGeometry x="1590" y="1040" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-103" value="Modélisation" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-103" value="Proba condi / indépendance" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-104" value="Loi VA" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-104" value="tableau de proba" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" /> <mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-105" value="Calculs proba" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-105" value="Calculs proba" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-102" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-276" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-106" target="FoqjGGwg7NdL9CHn8AbM-110" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-106" value="Condi - Arbres" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#9E0054;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-106" value="Condi - Arbres" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#9E0054;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="1460" width="140" height="120" as="geometry" /> <mxGeometry x="1590" y="1460" width="140" height="120" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-107" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-107" value="Construire arbre" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" /> <mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-108" value="Item 2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-108" value="proba totale" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" /> <mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-109" value="Item 3" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-109" value="Répétition 2 épreuves" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-106" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-110" value="Condi - Indépendance" style="swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;whiteSpace=wrap;html=1;fillColor=#9E0054;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="1880" width="140" height="120" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-111" value="Item 1" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-110" vertex="1">
<mxGeometry y="30" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-112" value="Item 2" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-110" vertex="1">
<mxGeometry y="60" width="140" height="30" as="geometry" />
</mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-113" value="Item 3" style="text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;whiteSpace=wrap;html=1;" parent="FoqjGGwg7NdL9CHn8AbM-110" vertex="1">
<mxGeometry y="90" width="140" height="30" as="geometry" /> <mxGeometry y="90" width="140" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="FoqjGGwg7NdL9CHn8AbM-283" value="24 séquences pour 30 semaines de 4h: un chapitre dure donc 5h évaluation incluse." style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1"> <mxCell id="FoqjGGwg7NdL9CHn8AbM-283" value="24 séquences pour 30 semaines de 4h: un chapitre dure donc 5h évaluation incluse." style="text;html=1;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" parent="1" vertex="1">
<mxGeometry x="100" y="2060" width="560" height="30" as="geometry" /> <mxGeometry x="100" y="2060" width="560" height="30" as="geometry" />
</mxCell> </mxCell>
<mxCell id="GZNPDUa5SBhof4KUbLLN-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.421;entryY=0.017;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="FoqjGGwg7NdL9CHn8AbM-42" target="FoqjGGwg7NdL9CHn8AbM-47"> <mxCell id="GZNPDUa5SBhof4KUbLLN-2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.421;entryY=0.017;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-42" target="FoqjGGwg7NdL9CHn8AbM-47" edge="1">
<mxGeometry relative="1" as="geometry"> <mxGeometry relative="1" as="geometry">
<Array as="points"> <Array as="points">
<mxPoint x="740" y="1650" /> <mxPoint x="740" y="1650" />
@@ -814,14 +773,15 @@
</Array> </Array>
</mxGeometry> </mxGeometry>
</mxCell> </mxCell>
<mxCell id="GZNPDUa5SBhof4KUbLLN-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.357;entryY=0.008;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="FoqjGGwg7NdL9CHn8AbM-42" target="FoqjGGwg7NdL9CHn8AbM-22"> <mxCell id="GZNPDUa5SBhof4KUbLLN-4" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="FoqjGGwg7NdL9CHn8AbM-42" target="FoqjGGwg7NdL9CHn8AbM-27" edge="1">
<mxGeometry relative="1" as="geometry"> <mxGeometry relative="1" as="geometry">
<Array as="points"> <Array as="points">
<mxPoint x="740" y="1380" /> <mxPoint x="740" y="1380" />
<mxPoint x="1035" y="1380" /> <mxPoint x="1035" y="1380" />
<mxPoint x="1035" y="1230" /> <mxPoint x="1035" y="1230" />
<mxPoint x="1460" y="1230" /> <mxPoint x="2060" y="1230" />
</Array> </Array>
<mxPoint x="1269.98" y="1260.9599999999996" as="targetPoint" />
</mxGeometry> </mxGeometry>
</mxCell> </mxCell>
</root> </root>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 288 KiB

After

Width:  |  Height:  |  Size: 320 KiB