Feat: début des corrections
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bertrand Benjamin 2022-03-28 08:49:03 +02:00
parent e4b3b7306a
commit f980a75039
4 changed files with 53 additions and 0 deletions

View File

@ -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.

Binary file not shown.

View File

@ -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}