import work from year 2015-2016
This commit is contained in:
1300
3e/DS/DS_15_09_25/Bilan/Bilan309.ipynb
Normal file
1300
3e/DS/DS_15_09_25/Bilan/Bilan309.ipynb
Normal file
File diff suppressed because one or more lines are too long
1311
3e/DS/DS_15_09_25/Bilan/Bilan313.ipynb
Normal file
1311
3e/DS/DS_15_09_25/Bilan/Bilan313.ipynb
Normal file
File diff suppressed because one or more lines are too long
BIN
3e/DS/DS_15_09_25/Bilan/bilan309.pdf
Normal file
BIN
3e/DS/DS_15_09_25/Bilan/bilan309.pdf
Normal file
Binary file not shown.
2872
3e/DS/DS_15_09_25/Bilan/bilan309.tex
Normal file
2872
3e/DS/DS_15_09_25/Bilan/bilan309.tex
Normal file
File diff suppressed because it is too large
Load Diff
BIN
3e/DS/DS_15_09_25/Bilan/bilan313.pdf
Normal file
BIN
3e/DS/DS_15_09_25/Bilan/bilan313.pdf
Normal file
Binary file not shown.
2864
3e/DS/DS_15_09_25/Bilan/bilan313.tex
Normal file
2864
3e/DS/DS_15_09_25/Bilan/bilan313.tex
Normal file
File diff suppressed because it is too large
Load Diff
79
3e/DS/DS_15_09_25/Bilan/tpl_bilan.tex
Normal file
79
3e/DS/DS_15_09_25/Bilan/tpl_bilan.tex
Normal file
@@ -0,0 +1,79 @@
|
||||
\documentclass{/media/documents/Cours/Prof/Enseignements/tools/style/classBilan}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2015_2016}
|
||||
|
||||
\usepackage{multicol}
|
||||
|
||||
% Title Page
|
||||
\titre{\Var{latex_info['titre']}}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{\Var{latex_info['classe']}}
|
||||
\date{\Var{latex_info['date']}}
|
||||
|
||||
|
||||
\begin{document}
|
||||
|
||||
\Block{for (name, notes) in eleves.iterrows()}
|
||||
\maketitle
|
||||
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\large
|
||||
\Var{name}
|
||||
\end{minipage}
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
\begin{flushright}
|
||||
\Large \Var{notes[ds_name]} / \Var{barem[ds_name][0]}
|
||||
\end{flushright}
|
||||
\end{minipage}
|
||||
|
||||
\vfill
|
||||
|
||||
\fbox{%
|
||||
\begin{minipage}{0.9\linewidth}
|
||||
\hfill
|
||||
\vspace{3cm}
|
||||
\end{minipage}
|
||||
}
|
||||
|
||||
\vfill
|
||||
|
||||
\scriptsize
|
||||
\begin{multicols}{2}
|
||||
\begin{tabular}{|p{3cm}|c|c|}
|
||||
\hline
|
||||
\rowcolor{highlightbg} Exercices & Réussite & Barème \\
|
||||
\hline
|
||||
\Block{for question in barem.T[1:(nbr_questions//2)+1].T}
|
||||
\Var{question} & \Var{notes[question]} & \Var{barem[question][0]} \\
|
||||
\hline
|
||||
\Block{endfor}
|
||||
\end{tabular}
|
||||
|
||||
\begin{tabular}{|p{3cm}|c|c|}
|
||||
\hline
|
||||
\rowcolor{highlightbg} Exercices & Réussite & Barème \\
|
||||
\hline
|
||||
\Block{for question in barem.T[(nbr_questions//2) + 1:].T}
|
||||
\Var{question} & \Var{notes[question]} & \Var{barem[question][0]} \\
|
||||
\hline
|
||||
\Block{endfor}
|
||||
\end{tabular}
|
||||
\end{multicols}
|
||||
|
||||
%\begin{tabular}{|p{2cm}|p{2cm}|p{2cm}|p{2cm}|p{2cm}|}
|
||||
% \hline
|
||||
% Pas de réponse & Faux & Peu juste & Partiellement juste & Juste \\
|
||||
% \hline
|
||||
% \NoRep & \RepZ & \RepU & \RepD & \RepT \\
|
||||
% \hline
|
||||
%\end{tabular}
|
||||
\normalsize
|
||||
\pagebreak
|
||||
\Block{endfor}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
198
3e/DS/DS_15_09_25/Creation PGCD.ipynb
Normal file
198
3e/DS/DS_15_09_25/Creation PGCD.ipynb
Normal file
@@ -0,0 +1,198 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 1,
|
||||
"metadata": {
|
||||
"collapsed": true
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"def pgcd_sous(a,b,appel = 0):\n",
|
||||
" if a == b:\n",
|
||||
" print(\"Nombre d'appels: \", appel+1)\n",
|
||||
" return a\n",
|
||||
" else:\n",
|
||||
" A = max(a,b)\n",
|
||||
" B = min(a,b)\n",
|
||||
" return pgcd_sous(A-B, B, appel = appel + 1)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 9,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"name": "stdout",
|
||||
"output_type": "stream",
|
||||
"text": [
|
||||
"Nombre d'appels: 5\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"28"
|
||||
]
|
||||
},
|
||||
"execution_count": 9,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"pgcd_sous(224, 84)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 11,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"16.0"
|
||||
]
|
||||
},
|
||||
"execution_count": 11,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"224/14"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 12,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"6.0"
|
||||
]
|
||||
},
|
||||
"execution_count": 12,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"84/14"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 36,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"name": "stdout",
|
||||
"output_type": "stream",
|
||||
"text": [
|
||||
"Nombre d'appels: 5\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"32"
|
||||
]
|
||||
},
|
||||
"execution_count": 36,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"pgcd_sous(224,96)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 37,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"6.0"
|
||||
]
|
||||
},
|
||||
"execution_count": 37,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"96/16"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 38,
|
||||
"metadata": {
|
||||
"collapsed": false
|
||||
},
|
||||
"outputs": [
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"14.0"
|
||||
]
|
||||
},
|
||||
"execution_count": 38,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"source": [
|
||||
"224/16"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"metadata": {
|
||||
"collapsed": true
|
||||
},
|
||||
"outputs": [],
|
||||
"source": []
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python 3",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.4.3"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 0
|
||||
}
|
||||
BIN
3e/DS/DS_15_09_25/DS_15_09_25_309subj1.pdf
Normal file
BIN
3e/DS/DS_15_09_25/DS_15_09_25_309subj1.pdf
Normal file
Binary file not shown.
92
3e/DS/DS_15_09_25/DS_15_09_25_309subj1.tex
Normal file
92
3e/DS/DS_15_09_25/DS_15_09_25_309subj1.tex
Normal file
@@ -0,0 +1,92 @@
|
||||
\documentclass[a4paper,12pt, table]{/media/documents/Cours/Prof/Enseignements/tools/style/classDS}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2015_2016}
|
||||
|
||||
% Title Page
|
||||
\titre{1}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{309}
|
||||
\date{25 septembre 2015}
|
||||
\duree{1 heure}
|
||||
\sujet{1}
|
||||
% DS DSCorr DM DMCorr Other
|
||||
\typedoc{DS}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
Le barème est donné à titre indicatif, il pourra être modifié.
|
||||
|
||||
\textbf{1 point} est réservé à la présentation de la copie.
|
||||
|
||||
\begin{questions}
|
||||
\question[3]
|
||||
Évaluer
|
||||
\begin{multicols}{2}
|
||||
\begin{parts}
|
||||
\part $3x + 10$ en x = 4
|
||||
\part $(2a + 3)\times (a - 4)$ en a = 2
|
||||
|
||||
\end{parts}
|
||||
\end{multicols}
|
||||
|
||||
\question[6]
|
||||
Nafissa et Hamidou doivent faire des cartons avec des ailes et des cuisses de poulet pour son magasin. Ils disposent de 224 ailes de poulet et de 84 cuisses.
|
||||
\begin{parts}
|
||||
\part Hamidou propose de répartir les morceaux de poulet de façon identique dans 20 cartons. Combien de morceaux de poulet leur restera-t-il?
|
||||
\begin{solution}
|
||||
4 ailes et 4 cuisses
|
||||
\end{solution}
|
||||
\part Cette proposition n'est pas acceptée, ils souhaitent qu'il ne leur reste aucun morceau.
|
||||
\begin{subparts}
|
||||
\subpart Nafissa propose de faire 14 cartons. Est-ce que cela convient?
|
||||
\begin{solution}
|
||||
Oui cela convient il y aura 16 ailes et 6 cuisses.
|
||||
\end{solution}
|
||||
\subpart Ils se mettent d'accord pour faire un maximum de cartons. Combien de cartons vont-il devoir faire?
|
||||
\begin{solution}
|
||||
Algo soustraction: 5 étapes
|
||||
PGCD est 28
|
||||
\end{solution}
|
||||
\end{subparts}
|
||||
\end{parts}
|
||||
|
||||
\question[6]
|
||||
\begin{minipage}{0.7\textwidth}
|
||||
Une roue équilibrée de loterie est partagée en sept secteurs identiques sur lesquels sont inscrits les lettres du mot LOTERIE. On la fait tourner, elle s'immobilise et on observe la lettre obtenue.
|
||||
\end{minipage}
|
||||
\hspace{1cm}
|
||||
\begin{minipage}{0.3\textwidth}
|
||||
\includegraphics[scale=0.3]{./fig/loterie}
|
||||
\end{minipage}
|
||||
\begin{parts}
|
||||
\part Vrai ou Faux (écrire Vrai ou Faux sur la copie sans justifier)
|
||||
\begin{subparts}
|
||||
\subpart Il y a 8 issues.
|
||||
\subpart "Obtenir une consonne" est une issue possible.
|
||||
\subpart "Obtenir une consonne" est un évènement possible.
|
||||
\subpart "Obtenir une consonne" est un évènement certain.
|
||||
\end{subparts}
|
||||
\part Calculer la probabilité d'avoir une voyelle.
|
||||
\part Calculer la probabilité d'avoir une lettre du mot ETOILE.
|
||||
\end{parts}
|
||||
|
||||
\question[4]
|
||||
On veut réaliser des mozaïques "carrés avec un double côté". En voici 3 exemples:
|
||||
\begin{center}
|
||||
\includegraphics[scale=0.1]{./fig/mozaique}
|
||||
\end{center}
|
||||
\begin{parts}
|
||||
\part Proposer une formule permettant de compter le nombre de petits carreaux nécessaires pour fabriquer n'importe quel "carré avec un double côté". \textit{(Dans cette question toute trace de recherche même non terminée sera valorisée)}.
|
||||
\part Pourquoi la formule $c\times5 - 6$ (où $c$ correspond au nombre de carreaux sur un côté) est-elle fausse?
|
||||
\end{parts}
|
||||
|
||||
|
||||
\end{questions}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
3e/DS/DS_15_09_25/DS_15_09_25_309subj2.pdf
Normal file
BIN
3e/DS/DS_15_09_25/DS_15_09_25_309subj2.pdf
Normal file
Binary file not shown.
89
3e/DS/DS_15_09_25/DS_15_09_25_309subj2.tex
Normal file
89
3e/DS/DS_15_09_25/DS_15_09_25_309subj2.tex
Normal file
@@ -0,0 +1,89 @@
|
||||
\documentclass[a4paper,12pt, table]{/media/documents/Cours/Prof/Enseignements/tools/style/classDS}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2015_2016}
|
||||
|
||||
% Title Page
|
||||
\titre{1}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{309}
|
||||
\date{25 septembre 2015}
|
||||
\duree{1 heure}
|
||||
\sujet{2}
|
||||
% DS DSCorr DM DMCorr Other
|
||||
\typedoc{DS}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
Le barème est donné à titre indicatif, il pourra être modifié.
|
||||
|
||||
\textbf{1 point} est réservé à la présentation de la copie.
|
||||
|
||||
\begin{questions}
|
||||
\question[3]
|
||||
Évaluer
|
||||
\begin{multicols}{2}
|
||||
\begin{parts}
|
||||
\part $5x + 9$ en x = 3
|
||||
\part $(3a + 4)\times (a - 4)$ en a = 2
|
||||
\end{parts}
|
||||
\end{multicols}
|
||||
|
||||
\question[6]
|
||||
Nafissa et Hamidou doivent faire des cartons avec des ailes et des cuisses de poulet pour son magasin. Ils disposent de 224 ailes de poulet et de 96 cuisses.
|
||||
\begin{parts}
|
||||
\part Hamidou propose de répartir les morceaux de poulet de façon identique dans 20 cartons. Combien de morceaux de poulet leur restera-t-il?
|
||||
\begin{solution}
|
||||
4 ailes et 16 cuisses
|
||||
\end{solution}
|
||||
\part Cette proposition n'est pas acceptée, ils souhaitent qu'il ne leur reste aucun morceau.
|
||||
\begin{subparts}
|
||||
\subpart Nafissa propose de faire 16 cartons. Est-ce que cela convient?
|
||||
\begin{solution}
|
||||
Oui cela convient il y aura 14 ailes et 6 cuisses.
|
||||
\end{solution}
|
||||
\subpart Ils se mettent d'accord pour faire un maximum de cartons. Combien de cartons vont-il devoir faire?
|
||||
\begin{solution}
|
||||
Algo soustraction: 5 étapes
|
||||
PGCD est 32
|
||||
\end{solution}
|
||||
\end{subparts}
|
||||
\end{parts}
|
||||
|
||||
\question[6]
|
||||
\begin{minipage}{0.7\textwidth}
|
||||
Une roue équilibrée de loterie est partagée en sept secteurs identiques sur lesquels sont inscrits les lettres du mot LOTERIE. On la fait tourner, elle s'immobilise et on observe la lettre obtenue.
|
||||
\end{minipage}
|
||||
\hspace{1cm}
|
||||
\begin{minipage}{0.3\textwidth}
|
||||
\includegraphics[scale=0.3]{./fig/loterie}
|
||||
\end{minipage}
|
||||
\begin{parts}
|
||||
\part Vrai ou Faux (écrire Vrai ou Faux sur la copie sans justifier)
|
||||
\begin{subparts}
|
||||
\subpart Il y a 7 issues.
|
||||
\subpart "Obtenir une consonne" est un évènement possible.
|
||||
\subpart "Obtenir une consonne" est une issue possible.
|
||||
\subpart "Obtenir une consonne" est un évènement certain.
|
||||
\end{subparts}
|
||||
\part Calculer la probabilité d'avoir une consonne.
|
||||
\part Calculer la probabilité d'avoir une lettre du mot VICTOIRE.
|
||||
\end{parts}
|
||||
|
||||
\question[4]
|
||||
On veut réaliser des mozaïques "carrés avec un double côté". En voici 3 exemples:
|
||||
\begin{center}
|
||||
\includegraphics[scale=0.1]{./fig/mozaique}
|
||||
\end{center}
|
||||
\begin{parts}
|
||||
\part Proposer une formule permettant de compter le nombre de petits carreaux nécessaires pour fabriquer n'importe quel "carré avec un double côté". \textit{(Dans cette question toute trace de recherche même non terminée sera valorisée)}.
|
||||
\part Pourquoi la formule $c\times5 - 6$ (où $c$ correspond au nombre de carreaux sur un côté) est-elle fausse?
|
||||
\end{parts}
|
||||
\end{questions}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
3e/DS/DS_15_09_25/DS_15_09_25_313subj1.pdf
Normal file
BIN
3e/DS/DS_15_09_25/DS_15_09_25_313subj1.pdf
Normal file
Binary file not shown.
92
3e/DS/DS_15_09_25/DS_15_09_25_313subj1.tex
Normal file
92
3e/DS/DS_15_09_25/DS_15_09_25_313subj1.tex
Normal file
@@ -0,0 +1,92 @@
|
||||
\documentclass[a4paper,12pt, table]{/media/documents/Cours/Prof/Enseignements/tools/style/classDS}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2015_2016}
|
||||
|
||||
% Title Page
|
||||
\titre{1}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{313}
|
||||
\date{25 septembre 2015}
|
||||
\duree{1 heure}
|
||||
\sujet{1}
|
||||
% DS DSCorr DM DMCorr Other
|
||||
\typedoc{DS}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
Le barème est donné à titre indicatif, il pourra être modifié.
|
||||
|
||||
\textbf{1 point} est réservé à la présentation de la copie.
|
||||
|
||||
\begin{questions}
|
||||
\question[3]
|
||||
Évaluer
|
||||
\begin{multicols}{2}
|
||||
\begin{parts}
|
||||
\part $3x + 10$ en x = 4
|
||||
\part $(2a + 3)\times (a - 4)$ en a = 2
|
||||
|
||||
\end{parts}
|
||||
\end{multicols}
|
||||
|
||||
\question[6]
|
||||
Saïd veut faire des équipes de basket. Pour cela, il dispose de 224 joueurs féminins et de 84 joueurs masculins.
|
||||
\begin{parts}
|
||||
\part Au départ, il pense faire 20 équipes identiques. Combien de joueurs ne feront partis d'aucune équipe?
|
||||
\begin{solution}
|
||||
4 joueuses et 16 joueurs
|
||||
\end{solution}
|
||||
\part Il abandonne l'idée et décide que tous les joueurs doivent jouer.
|
||||
\begin{subparts}
|
||||
\subpart Il suggère de faire 14 équipes.Est-ce que cela convient?
|
||||
\begin{solution}
|
||||
14 filles et 6 garçons
|
||||
\end{solution}
|
||||
\subpart Finalement, il voudrait fait un maximum d'équipe. Combien d'équipe pourra-t-il faire?
|
||||
\begin{solution}
|
||||
Algo soustraction: 5 étapes
|
||||
PGCD est 32
|
||||
\end{solution}
|
||||
\end{subparts}
|
||||
\end{parts}
|
||||
|
||||
\question[6]
|
||||
\begin{minipage}{0.7\textwidth}
|
||||
Une roue équilibrée de loterie est partagée en sept secteurs identiques sur lesquels sont inscrits les lettres du mot LOTERIE. On la fait tourner, elle s'immobilise et on observe la lettre obtenue.
|
||||
\end{minipage}
|
||||
\hspace{1cm}
|
||||
\begin{minipage}{0.3\textwidth}
|
||||
\includegraphics[scale=0.3]{./fig/loterie}
|
||||
\end{minipage}
|
||||
\begin{parts}
|
||||
\part Vrai ou Faux (écrire Vrai ou Faux sur la copie sans justifier)
|
||||
\begin{subparts}
|
||||
\subpart Il y a 8 issues.
|
||||
\subpart "Obtenir une consonne" est une issue possible.
|
||||
\subpart "Obtenir une consonne" est un évènement possible.
|
||||
\subpart "Obtenir une consonne" est un évènement certain.
|
||||
\end{subparts}
|
||||
\part Calculer la probabilité d'avoir une voyelle.
|
||||
\part Calculer la probabilité d'avoir une lettre du mot ETOILE.
|
||||
\end{parts}
|
||||
|
||||
\question[4]
|
||||
On veut réaliser des mozaïques "carrés avec un double côté". En voici 3 exemples:
|
||||
\begin{center}
|
||||
\includegraphics[scale=0.1]{./fig/mozaique}
|
||||
\end{center}
|
||||
\begin{parts}
|
||||
\part Proposer une formule permettant de compter le nombre de petits carreaux nécessaires pour fabriquer n'importe quel "carré avec un double côté". \textit{(Dans cette question toute trace de recherche même non terminée sera valorisée)}.
|
||||
\part Pourquoi la formule $c\times5 - 6$ (où $c$ correspond au nombre de carreaux sur un côté) est-elle fausse?
|
||||
\end{parts}
|
||||
|
||||
|
||||
\end{questions}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
3e/DS/DS_15_09_25/DS_15_09_25_313subj2.pdf
Normal file
BIN
3e/DS/DS_15_09_25/DS_15_09_25_313subj2.pdf
Normal file
Binary file not shown.
89
3e/DS/DS_15_09_25/DS_15_09_25_313subj2.tex
Normal file
89
3e/DS/DS_15_09_25/DS_15_09_25_313subj2.tex
Normal file
@@ -0,0 +1,89 @@
|
||||
\documentclass[a4paper,12pt, table]{/media/documents/Cours/Prof/Enseignements/tools/style/classDS}
|
||||
\usepackage{/media/documents/Cours/Prof/Enseignements/2015_2016}
|
||||
|
||||
% Title Page
|
||||
\titre{1}
|
||||
% \seconde \premiereS \PSTMG \TSTMG
|
||||
\classe{313}
|
||||
\date{25 septembre 2015}
|
||||
\duree{1 heure}
|
||||
\sujet{2}
|
||||
% DS DSCorr DM DMCorr Other
|
||||
\typedoc{DS}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
Le barème est donné à titre indicatif, il pourra être modifié.
|
||||
|
||||
\textbf{1 point} est réservé à la présentation de la copie.
|
||||
|
||||
\begin{questions}
|
||||
\question[3]
|
||||
Évaluer
|
||||
\begin{multicols}{2}
|
||||
\begin{parts}
|
||||
\part $5x + 9$ en x = 3
|
||||
\part $(3a + 4)\times (a - 4)$ en a = 2
|
||||
\end{parts}
|
||||
\end{multicols}
|
||||
|
||||
\question[6]
|
||||
Saïd veut faire des équipes de basket. Pour cela, il dispose de 224 joueurs féminins et de 96 joueurs masculins.
|
||||
\begin{parts}
|
||||
\part Au départ, il pense faire 20 équipes identiques. Combien de joueurs ne feront partis d'aucune équipe?
|
||||
\begin{solution}
|
||||
4 joueuses et 16 joueurs
|
||||
\end{solution}
|
||||
\part Il abandonne l'idée et décide que tous les joueurs doivent jouer.
|
||||
\begin{subparts}
|
||||
\subpart Il suggère de faire 16 équipes.Est-ce que cela convient?
|
||||
\begin{solution}
|
||||
14 filles et 6 garçons
|
||||
\end{solution}
|
||||
\subpart Finalement, il voudrait fait un maximum d'équipe. Combien d'équipe pourra-t-il faire?
|
||||
\begin{solution}
|
||||
Algo soustraction: 5 étapes
|
||||
PGCD est 32
|
||||
\end{solution}
|
||||
\end{subparts}
|
||||
\end{parts}
|
||||
|
||||
\question[6]
|
||||
\begin{minipage}{0.7\textwidth}
|
||||
Une roue équilibrée de loterie est partagée en sept secteurs identiques sur lesquels sont inscrits les lettres du mot LOTERIE. On la fait tourner, elle s'immobilise et on observe la lettre obtenue.
|
||||
\end{minipage}
|
||||
\hspace{1cm}
|
||||
\begin{minipage}{0.3\textwidth}
|
||||
\includegraphics[scale=0.3]{./fig/loterie}
|
||||
\end{minipage}
|
||||
\begin{parts}
|
||||
\part Vrai ou Faux (écrire Vrai ou Faux sur la copie sans justifier)
|
||||
\begin{subparts}
|
||||
\subpart Il y a 7 issues.
|
||||
\subpart "Obtenir une consonne" est un évènement possible.
|
||||
\subpart "Obtenir une consonne" est une issue possible.
|
||||
\subpart "Obtenir une consonne" est un évènement certain.
|
||||
\end{subparts}
|
||||
\part Calculer la probabilité d'avoir une consonne.
|
||||
\part Calculer la probabilité d'avoir une lettre du mot VICTOIRE.
|
||||
\end{parts}
|
||||
|
||||
\question[4]
|
||||
On veut réaliser des mozaïques "carrés avec un double côté". En voici 3 exemples:
|
||||
\begin{center}
|
||||
\includegraphics[scale=0.1]{./fig/mozaique}
|
||||
\end{center}
|
||||
\begin{parts}
|
||||
\part Proposer une formule permettant de compter le nombre de petits carreaux nécessaires pour fabriquer n'importe quel "carré avec un double côté". \textit{(Dans cette question toute trace de recherche même non terminée sera valorisée)}.
|
||||
\part Pourquoi la formule $c\times5 - 6$ (où $c$ correspond au nombre de carreaux sur un côté) est-elle fausse?
|
||||
\end{parts}
|
||||
\end{questions}
|
||||
|
||||
\end{document}
|
||||
|
||||
%%% Local Variables:
|
||||
%%% mode: latex
|
||||
%%% TeX-master: "master"
|
||||
%%% End:
|
||||
|
||||
BIN
3e/DS/DS_15_09_25/fig/loterie.pdf
Normal file
BIN
3e/DS/DS_15_09_25/fig/loterie.pdf
Normal file
Binary file not shown.
144
3e/DS/DS_15_09_25/fig/loterie.svg
Normal file
144
3e/DS/DS_15_09_25/fig/loterie.svg
Normal file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<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:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="89.877571mm"
|
||||
height="89.877525mm"
|
||||
viewBox="0 0 318.46383 318.46367"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="loterie.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.5017284"
|
||||
inkscape:cx="313.08304"
|
||||
inkscape:cy="123.50952"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
fit-margin-top="5"
|
||||
fit-margin-left="5"
|
||||
fit-margin-right="5"
|
||||
fit-margin-bottom="5"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="715"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<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"
|
||||
transform="translate(-58.964208,-331.22694)">
|
||||
<g
|
||||
id="g4261"
|
||||
style="stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136"
|
||||
d="m 218.1962,490.45872 99.4434,-99.44341"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1"
|
||||
d="M 218.1962,490.45872 202.45015,350.70877"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1-6"
|
||||
d="M 218.1962,490.45872 99.1178,415.6368"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1-6-2"
|
||||
d="M 218.1962,490.45872 85.453907,536.90725"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1-6-2-2"
|
||||
d="M 218.1962,490.45872 171.74767,623.201"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1-6-2-2-3"
|
||||
d="M 218.1962,490.45872 293.01812,609.5371"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4136-1-6-2-2-6"
|
||||
d="M 357.94614,506.20474 218.1962,490.45872"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
d="M 102.67556,410.47439 A 140.50804,140.50804 0 0 1 298.11649,374.89376 140.50804,140.50804 0 0 1 333.80541,570.31495 140.50804,140.50804 0 0 1 138.40404,606.11216 140.50804,140.50804 0 0 1 102.49855,410.73065"
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="3.7449704"
|
||||
sodipodi:start="3.747187"
|
||||
sodipodi:ry="140.50804"
|
||||
sodipodi:rx="140.50804"
|
||||
sodipodi:cy="490.45871"
|
||||
sodipodi:cx="218.1962"
|
||||
sodipodi:type="arc"
|
||||
id="path4259"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:15px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
id="text4333"
|
||||
sodipodi:linespacing="125%"><textPath
|
||||
xlink:href="#path4341"
|
||||
id="textPath4350"
|
||||
style="font-size:35px"> L O T E R I E</textPath></text>
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4341"
|
||||
sodipodi:type="arc"
|
||||
sodipodi:cx="218.1962"
|
||||
sodipodi:cy="490.45871"
|
||||
sodipodi:rx="72.883469"
|
||||
sodipodi:ry="72.883469"
|
||||
sodipodi:start="3.747187"
|
||||
sodipodi:end="3.7449704"
|
||||
sodipodi:open="true"
|
||||
d="M 158.27404,448.96973 A 72.883469,72.883469 0 0 1 259.65196,430.51357 72.883469,72.883469 0 0 1 278.1643,531.88125 72.883469,72.883469 0 0 1 176.8069,550.44976 72.883469,72.883469 0 0 1 158.18222,449.10266" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
BIN
3e/DS/DS_15_09_25/fig/mozaique.pdf
Normal file
BIN
3e/DS/DS_15_09_25/fig/mozaique.pdf
Normal file
Binary file not shown.
538
3e/DS/DS_15_09_25/fig/mozaique.svg
Normal file
538
3e/DS/DS_15_09_25/fig/mozaique.svg
Normal file
@@ -0,0 +1,538 @@
|
||||
<?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"
|
||||
version="1.1"
|
||||
id="svg5403"
|
||||
viewBox="0 0 3038.8095 872.08499"
|
||||
height="246.12177mm"
|
||||
width="857.61957mm"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="mozaique.svg">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="715"
|
||||
id="namedview4378"
|
||||
showgrid="false"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-midpoints="true"
|
||||
fit-margin-top="5"
|
||||
fit-margin-left="5"
|
||||
fit-margin-right="5"
|
||||
fit-margin-bottom="5"
|
||||
inkscape:zoom="0.17530689"
|
||||
inkscape:cx="1000.5099"
|
||||
inkscape:cy="-362.52305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg5403" />
|
||||
<defs
|
||||
id="defs5405" />
|
||||
<metadata
|
||||
id="metadata5408">
|
||||
<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
|
||||
id="g4735"
|
||||
transform="translate(19.999799,29.302859)">
|
||||
<g
|
||||
id="g4676">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -2.2832633,2.0242635 126.5717033,0 0,126.5717065 -126.5717033,0 z"
|
||||
id="rect5978" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 134.28844,2.0242635 126.5717,0 0,126.5717065 -126.5717,0 z"
|
||||
id="rect5978-9" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 270.86014,2.0242635 126.5717,0 0,126.5717065 -126.5717,0 z"
|
||||
id="rect5978-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 407.43184,2.0242668 126.5717,0 0,126.5717032 -126.5717,0 z"
|
||||
id="rect5978-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 544.00354,2.0242668 126.5717,0 0,126.5717032 -126.5717,0 z"
|
||||
id="rect5978-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 680.57524,2.0242651 126.5717,0 0,126.5717049 -126.5717,0 z"
|
||||
id="rect5978-53" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.28844,811.45501 0,-126.57173 -126.5717012,0 0,126.57173 z"
|
||||
id="rect5978-56" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.28844,674.88318 0,-126.57171 -126.5717012,0 0,126.57171 z"
|
||||
id="rect5978-9-0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.28844,538.31137 0,-126.5717 -126.5716992,0 0,126.5717 z"
|
||||
id="rect5978-8-3" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.28844,401.73957 0,-126.5717 -126.5716992,0 0,126.5717 z"
|
||||
id="rect5978-4-9" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 124.28844,265.16777 0,-126.5717 -126.5716992,0 0,126.5717 z"
|
||||
id="rect5978-5-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 807.14696,811.45501 0,-126.57173 -126.5717,0 0,126.57173 z"
|
||||
id="rect5978-56-1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 807.14694,674.88319 0,-126.5717 -126.5717,0 0,126.5717 z"
|
||||
id="rect5978-9-0-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 807.14694,538.31139 0,-126.5717 -126.5717,0 0,126.5717 z"
|
||||
id="rect5978-8-3-3" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 807.14694,401.73962 0,-126.5717 -126.5717,0 0,126.5717 z"
|
||||
id="rect5978-4-9-0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 807.14694,265.16781 0,-126.5717 -126.5717,0 0,126.5717 z"
|
||||
id="rect5978-5-4-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 260.86014,811.45501 0,-126.57173 -126.5717,0 0,126.57173 z"
|
||||
id="rect5978-56-1-3" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 260.86014,674.88318 0,-126.57171 -126.5717,0 0,126.57171 z"
|
||||
id="rect5978-9-0-4-9" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 260.86014,538.31137 0,-126.5717 -126.57171,0 0,126.5717 z"
|
||||
id="rect5978-8-3-3-7" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 260.86014,401.73957 0,-126.5717 -126.57171,0 0,126.5717 z"
|
||||
id="rect5978-4-9-0-1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 260.86014,265.16777 0,-126.5717 -126.57171,0 0,126.5717 z"
|
||||
id="rect5978-5-4-7-3" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 270.86014,684.88328 126.5717,0 0,126.57173 -126.5717,0 z"
|
||||
id="rect5978-8-8" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 407.43182,684.88328 126.5717,0 0,126.57173 -126.5717,0 z"
|
||||
id="rect5978-4-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 544.00354,684.88328 126.5717,0 0,126.57173 -126.5717,0 z"
|
||||
id="rect5978-5-3" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4645"
|
||||
transform="translate(11.060057,30.731238)">
|
||||
<g
|
||||
id="g4702">
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1086.2592,-3.7933854 108.1358,0 0,108.1357654 -108.1358,0 z"
|
||||
id="rect5978-84"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1204.395,-3.7933854 108.1358,0 0,108.1357654 -108.1358,0 z"
|
||||
id="rect5978-9-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1322.5308,-3.7933854 108.1358,0 0,108.1357654 -108.1358,0 z"
|
||||
id="rect5978-8-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1440.6666,-3.7933832 108.1358,0 0,108.1357632 -108.1358,0 z"
|
||||
id="rect5978-4-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1558.8024,-3.7933832 108.1358,0 0,108.1357632 -108.1358,0 z"
|
||||
id="rect5978-5-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1795.0739,-3.793383 108.1358,0 0,108.135763 -108.1358,0 z"
|
||||
id="rect5978-53-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,576.88583 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,458.74996 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-8-3-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,340.6141 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-4-9-8"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,222.47824 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-5-4-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,696.28001 0,-108.13579 -108.1357,0 0,108.13579 z"
|
||||
id="rect5978-56-1-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,578.14412 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-9-0-4-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,460.00826 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-8-3-3-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,341.8724 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-4-9-0-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,223.73654 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-5-4-7-0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5308,576.88583 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-4-9-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5308,458.74996 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-8-3-3-7-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5308,340.6141 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-4-9-0-1-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5308,222.47824 0,-108.13576 -108.1358,0 0,108.13576 z"
|
||||
id="rect5978-5-4-7-3-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,695.0217 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-5-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5308,695.0217 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-4-9-9-9"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1903.2097,814.4159 0,-108.13579 -108.1357,0 0,108.13579 z"
|
||||
id="rect5978-56-1-0-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1194.395,814.41589 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-5-2-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1312.5535,814.41589 0,-108.13577 -108.1358,0 0,108.13577 z"
|
||||
id="rect5978-9-0-4-9-9-9-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1322.5764,706.28012 108.1358,0 0,108.13577 -108.1358,0 z"
|
||||
id="rect5978-8-0-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1440.7351,706.28012 108.1358,0 0,108.13577 -108.1358,0 z"
|
||||
id="rect5978-4-0-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1558.8938,706.28012 108.1357,0 0,108.13577 -108.1357,0 z"
|
||||
id="rect5978-5-6-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1676.9382,-3.793381 108.1357,0 0,108.135761 -108.1357,0 z"
|
||||
id="rect5978-5-6-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 1677.0525,706.28012 108.1358,0 0,108.13577 -108.1358,0 z"
|
||||
id="rect5978-4-0-2-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4604"
|
||||
transform="translate(19.999782,29.472315)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-84-4"
|
||||
d="m 2164.4425,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-4-0"
|
||||
d="m 2258.5148,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-0-55"
|
||||
d="m 2352.5871,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-4-0-29"
|
||||
d="m 2446.6594,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-6-68"
|
||||
d="m 2540.7317,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-5-8"
|
||||
d="m 2248.5148,448.60631 0,-84.07235 -84.0723,0 0,84.07235 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-8-7"
|
||||
d="m 2248.5148,354.53386 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-4-9-8-4"
|
||||
d="m 2248.5148,260.4614 0,-84.07233 -84.0723,0 0,84.07233 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-4-0-2"
|
||||
d="m 2248.5148,166.38897 0,-84.072321 -84.0723,0 0,84.072321 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-4-9-9-6"
|
||||
d="m 2342.5871,448.60631 0,-84.07235 -84.0723,0 0,84.07235 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-3-7-3-2"
|
||||
d="m 2342.5871,354.53386 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-4-9-0-1-9-0"
|
||||
d="m 2342.5871,260.4614 0,-84.07233 -84.0723,0 0,84.07233 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-4-7-3-9-8"
|
||||
d="m 2342.5871,166.38897 0,-84.072321 -84.0723,0 0,84.072321 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-5-2-2"
|
||||
d="m 2248.5148,542.67877 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-4-9-9-9-64"
|
||||
d="m 2342.5871,542.67877 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-53-5-6"
|
||||
d="m 2917.0209,-11.75578 84.0723,0 0,84.072336 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-56-1-0-3"
|
||||
d="m 3001.0932,540.92986 0,-84.07235 -84.0723,0 0,84.07235 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-4-7-9"
|
||||
d="m 3001.0932,446.85741 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-3-4-0"
|
||||
d="m 3001.0932,352.78495 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-4-9-0-2-8"
|
||||
d="m 3001.0932,258.71249 0,-84.07231 -84.0723,0 0,84.07231 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-4-7-0-1"
|
||||
d="m 3001.0932,164.64008 0,-84.072327 -84.0723,0 0,84.072327 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-6-3-9"
|
||||
d="m 2634.804,-11.755772 84.0723,0 0,84.072321 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-4-0-29-9"
|
||||
d="m 2728.8763,-11.755752 84.0723,0 0,84.072281 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-5-6-68-4"
|
||||
d="m 2822.9486,-11.755752 84.0723,0 0,84.072281 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
id="rect5978-9-0-5-2-4-1"
|
||||
d="m 2248.5147,824.89614 0,-84.07235 -84.0723,0 0,84.07235 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-9-0-4-9-9-9-6-9"
|
||||
d="m 2342.5869,824.89614 0,-84.07235 -84.0723,0 0,84.07235 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-8-0-5-4"
|
||||
d="m 2352.5869,740.82379 84.0723,0 0,84.07235 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-4-0-2-4"
|
||||
d="m 2446.6592,740.82379 84.0723,0 0,84.07235 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-5-6-6-5"
|
||||
d="m 2540.7314,740.82379 84.0723,0 0,84.07235 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-4-0-2-3-5"
|
||||
d="m 2634.8037,740.82379 84.0723,0 0,84.07235 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-4-0-2-4-2"
|
||||
d="m 2728.876,740.82379 84.0723,0 0,84.07235 -84.0723,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-5-6-6-5-7"
|
||||
d="m 2822.9482,740.82379 84.0724,0 0,84.07235 -84.0724,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="rect5978-4-0-2-3-5-8"
|
||||
d="m 2917.0208,740.82379 84.0724,0 0,84.07235 -84.0724,0 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-5-8-3"
|
||||
d="m 2248.5148,730.82369 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-8-7-7"
|
||||
d="m 2248.5148,636.75123 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-4-9-9-6-5"
|
||||
d="m 2342.5871,730.82369 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-3-7-3-2-6"
|
||||
d="m 2342.5871,636.75123 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-9-0-4-7-9-3"
|
||||
d="m 3001.0932,729.07478 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect5978-8-3-3-4-0-0"
|
||||
d="m 3001.0932,635.00232 0,-84.07236 -84.0723,0 0,84.07236 z"
|
||||
style="opacity:0.54299999;fill:#000000;fill-opacity:1;stroke:none;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 30 KiB |
12
3e/DS/DS_15_09_25/index.rst
Normal file
12
3e/DS/DS_15_09_25/index.rst
Normal file
@@ -0,0 +1,12 @@
|
||||
Notes sur DS_15_09_25 pour les 3e
|
||||
#################################
|
||||
|
||||
:date: 2016-01-23
|
||||
:modified: 2016-01-23
|
||||
:tags: DS, Calcul litteral, PGCD
|
||||
:category: 3e
|
||||
:authors: Bertrand Benjamin
|
||||
:summary: Note sur le premier DS des 3e en 2015
|
||||
|
||||
|
||||
Pas de note.
|
||||
Reference in New Issue
Block a user