diff --git a/2nd/16_Droites_dans_un_repère/exercises.tex b/2nd/16_Droites_dans_un_repère/exercises.tex index b8e5233..be9a40a 100644 --- a/2nd/16_Droites_dans_un_repère/exercises.tex +++ b/2nd/16_Droites_dans_un_repère/exercises.tex @@ -29,6 +29,12 @@ ylabel = {$y$}, ymin = -10, ymax = 10, ] + \draw[very thick] (axis cs:-5, 10) node [below right] {$(z)$}; + \draw[very thick] (axis cs:-2.5, 10) node [below left] {$(y)$}; + \draw[very thick] (axis cs:-1, 10) node [below left] {$(x)$}; + \draw[very thick] (axis cs:2, 10) node [below right] {$(w)$}; + \draw[very thick] (axis cs:3.25, 10) node [below right] {$(v)$}; + \draw[very thick] (axis cs:-1, -10) -- (axis cs:-1, 10); \addplot[domain=-10:10,color=red, very thick, color=red]{3*x}; \addplot[domain=-10:10,color=red, very thick, color=green]{-2*x}; @@ -39,6 +45,25 @@ \end{center} \end{exercise} +\begin{solution} + \renewcommand{\arraystretch}{3} + \begin{tabular}{|c|c|p{5.5cm}|*{5}{c|}} + \hline + Nom & Equation & description & A(1; 3) & B(0; -3) & C(-1; -3) & D(-1; 2) & E(0; 0) \\ + \hline + $(a)$ & $y=3x$ & L'ordonnée est égal à trois fois l'abscisse & $\in$ & $\not \in$ & $\in$ & $\not \in$ & $\in$ \\ + \hline + $(b)$ & $y = -2x$ & L'ordonnée est égal à moins deux fois l'abscisse & $\not \in$ & $\not \in$ & $\not \in$ & $\in$ & $\in$ \\ + \hline + $(c)$ & $x = -1$ & L'abscisse est égal à -1& $\not \in$ & $\not \in$ & $\in$ & $\in$ & $\not \in$ \\ + \hline + $(d)$ & $y = 6x-3$ & L'ordonnée est égal à 6 fois l'abscisse moins 3 & & & & & \\ + \hline + $(f)$ & $y + 5x + 3=0$ & L'ordonnée plus 5 fois l'abscisse plus trois est égal à 3& & & & & \\ + \hline + \end{tabular} +\end{solution} + \begin{exercise}[subtitle={Équation de droite et coordonnée}, step={1}, origin={création}, topics={ Droites dans un repère }, tags={ Géométrie repérée }, mode={\trainMode}] Compléter le tableau suivant avec une équation pour la première colonne, une phrase pour la deuxième et la valeur de la coordonnée manquante du point en supposant qu'il soit sur la droite. diff --git a/2nd/16_Droites_dans_un_repère/plan_de_travail.pdf b/2nd/16_Droites_dans_un_repère/plan_de_travail.pdf index b55373d..b19d456 100644 Binary files a/2nd/16_Droites_dans_un_repère/plan_de_travail.pdf and b/2nd/16_Droites_dans_un_repère/plan_de_travail.pdf differ diff --git a/2nd/16_Droites_dans_un_repère/solutions.pdf b/2nd/16_Droites_dans_un_repère/solutions.pdf new file mode 100644 index 0000000..e3e2df2 Binary files /dev/null and b/2nd/16_Droites_dans_un_repère/solutions.pdf differ diff --git a/2nd/16_Droites_dans_un_repère/solutions.tex b/2nd/16_Droites_dans_un_repère/solutions.tex new file mode 100644 index 0000000..de5fc12 --- /dev/null +++ b/2nd/16_Droites_dans_un_repère/solutions.tex @@ -0,0 +1,28 @@ +\documentclass[a4paper,10pt]{article} +\usepackage{myXsim} + +\usetikzlibrary{shapes.geometric} + +\author{Benjamin Bertrand} +\title{Éqution de droite - Solutions} +\tribe{2nd} +\date{Avril 2022} + +\DeclareExerciseCollection{banque} +\xsimsetup{ + exercise/print=false, + solution/print=true, +} + +\pagestyle{plain} + + +\begin{document} + +\maketitle + +\input{exercises.tex} +%\printcollection{banque} +%\printsolutions{exercises} + +\end{document}