Feat: ajout exercices pour tracer et la notion de corde

This commit is contained in:
Bertrand Benjamin 2022-11-14 08:20:44 +01:00
parent 087d3df807
commit ddbd6a8cbf
6 changed files with 75 additions and 11 deletions

View File

@ -26,7 +26,7 @@
\bigskip
On interprète ce nombre comme la pente de la droite qui relie les points de la droite d'abscisse $a$ et $b$.
On interprète ce nombre comme la pente de la droite qui relie les points de la droite d'abscisse $a$ et $b$. Cette droite est appelé \textbf{corde}.
\end{minipage}
\hfill
\begin{minipage}{0.45\linewidth}

View File

@ -262,6 +262,61 @@
\end{tikzpicture}
\end{enumerate}
\end{multicols}
\begin{enumerate}
\setcounter{enumi}{2}
\item
Tracer une courbe qui respecte les points et les tangentes représentées dans les graphiques suivants.
\pgfkeys{tikz/.cd,
tangent length/.store in=\TangentLength,
tangent length=7mm
}
\tikzset{tangent/.style={black,thick},
tangent at/.style={postaction={decorate,decoration={markings,
mark=at position #1 with {\draw[tangent] (-\TangentLength,0) -- (\TangentLength,0);
\fill[tangent] (0,0) circle (2pt);}}}},
}
\begin{tikzpicture}[scale=1]
% Axes
\draw [-latex] (-0.5,0) -- (8,0) node [above] {$x$};
\draw [-latex] (0,-0.5) -- (0,4) node [right] {$y$};
% Origin
\node at (0,0) [below left] {$0$};
% Points
\coordinate (start) at (0,-0.8);
\coordinate (c1) at (3,3);
\coordinate (c2) at (5,1.5);
\coordinate (c3) at (6,4);
\coordinate (end) at (8,2);
% show the points
% \foreach \n in {start,c1,c2,c3,end} \fill [black] (\n)
% circle (2pt) node [below] {};
% join the coordinates
\path [tangent at/.list={0.15,0.3,...,1}] (start) to[out=70,in=180] (c1) to[out=0,in=180]
(c2) to[out=0,in=180] (c3) to[out=0,in=150] (end);
\end{tikzpicture}
\hfill
\begin{tikzpicture}[scale=1]
% Axes
\draw [-latex] (-4,0) -- (4,0) node [above] {$x$};
\draw [-latex] (0,-3) -- (0,3) node [right] {$y$};
% Origin
\node at (0,0) [below left] {$0$};
% Points
\coordinate (start) at (-4,-1);
\coordinate (c1) at (-2,3);
\coordinate (c2) at (0,1);
\coordinate (c3) at (2,-2);
\coordinate (end) at (4,0);
% show the points
% \foreach \n in {start,c1,c2,c3,end} \fill [black] (\n)
% circle (2pt) node [below] {};
% join the coordinates
\path [tangent at/.list={0.2,0.4,...,1}] (start) to[out=70,in=180] (c1) to[out=0,in=180]
(c2) to[out=0,in=180] (c3) to[out=0,in=150] (end);
\end{tikzpicture}
\end{enumerate}
\end{exercise}
% Nombre dérivé et tangente
@ -282,7 +337,7 @@
ytick distance=1,
]
\addplot[domain=-4:2,samples=20, color=red, very thick]{0.1*(x+1)^3 + 1};
\addplot [black, mark=*, very thick, only marks] coordinates {(3,1)};
\addplot [black, mark=*, very thick, only marks] coordinates {(1,1)};
\addplot [black, mark=*, very thick, only marks] coordinates {(1,5)};
\addplot [black, mark=*, very thick, only marks] coordinates {(4,2)};
\end{axis}
@ -297,12 +352,10 @@
xtick distance=1,
ylabel = {$f(x)$},
ytick distance=1,
ymin = -6,
ymax = 6,
]
\addplot[domain=-2:2,samples=50, color=red, very thick]{sin(deg(x*pi/2))*5};
\addplot [black, mark=*, very thick, only marks] coordinates {(-1,-5)};
\addplot [black, mark=*, very thick, only marks] coordinates {(1.5,5*sin(deg(1.5*pi/2)))};
\addplot[domain=-2:2,samples=50, color=red, very thick]{sin(deg(x*pi/2))*2};
\addplot [black, mark=*, very thick, only marks] coordinates {(-1,-2)};
\addplot [black, mark=*, very thick, only marks] coordinates {(1.5,2*sin(deg(1.5*pi/2)))};
\addplot [black, mark=*, very thick, only marks] coordinates {(0,0)};
\end{axis}
\end{tikzpicture}

View File

@ -2,7 +2,7 @@ Nombre dérivé et tangente
#########################
:date: 2022-11-09
:modified: 2022-11-10
:modified: 2022-11-14
:authors: Benjamin Bertrand
:tags: Dérivation
:category: 1ST
@ -59,6 +59,11 @@ On demandera ensuite aux élèves de trouver une façon visuelle et une façon c
Bilan: calculs et classement des périodes. Définition du taux d'accroissement et lien avec le calcul d'une vitesse.
.. image:: ./1B_taux_accroissement.pdf
:height: 200px
:alt: Définition du taux d'accroissement et de la vitesse moyenne
Étape 2: Tangente
-----------------
@ -68,10 +73,15 @@ Un exercice se base sur la lecture graphique, le suivant sur une formule et le d
Bilan: Notion de tangente et taux de variations d'une fonction
Étape 3: Les droites
--------------------
.. image:: ./2B_tangente.pdf
:height: 200px
:alt: Définition de la tangente
Partie technique, essentiellement orienté pour les sti2d, les élèves calculent des taux d'accroissement et réutilisent le résultat pour retrouver l'équation d'une droite.
Étape 3: Nombre dérivé
----------------------
Lire graphiquement un coefficient directeur d'une droite (d'une tangente plus particulièrement), tracer une tangente à partir du nombre dérivé.
Étape 4: Programmation et hamster
---------------------------------

View File

@ -1,6 +1,7 @@
\documentclass[a4paper,12pt]{article}
\usepackage{myXsim}
\usepackage{pgfplots}
\usetikzlibrary{decorations.markings}
\author{Benjamin Bertrand}
\title{Nombre dérivé et tangente - Plan de travail}