diff --git a/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.pdf b/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.pdf new file mode 100644 index 0000000..29105c9 Binary files /dev/null and b/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.pdf differ diff --git a/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.tex b/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.tex new file mode 100644 index 0000000..fd87e8a --- /dev/null +++ b/2nd/09_Fonctions_tableaux/1E_qui_est_ce_fonctions.tex @@ -0,0 +1,272 @@ +\documentclass[a4paper,10pt]{article} +\usepackage{myXsim} +\usepackage{pgfplots} +\pgfplotsset{compat = newest} +\usepgfplotslibrary{external} +\tikzexternalize + +\author{Benjamin Bertrand} +\title{Fonctions tableaux - Exercices} +\date{2021-10-18} + +\pagestyle{empty} + + +\begin{document} + +\begin{tikzpicture} + % {0.1*(x+4)*(x+1)*(x-5)} + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + legend entries={$f(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{0.1*(x+4)*(x+1)*(x-5)}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % 1/x + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + legend entries={$g(x)$} + ] + \addplot[domain=-6:-0.1,samples=40, color=red, very thick]{1/x}; + \addplot[domain=0.1:6,samples=40, color=red, very thick]{1/x}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % -x^2 + 2x + 1 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=10, + legend pos = north east, + legend entries={$h(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{-2*x^2 + 2*x + 1}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % 2x + 1 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=5, + legend pos = north west, + legend entries={$i(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{2*x +1}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % x^2 - 2x - 3 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=10, + legend pos = north west, + legend entries={$j(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{2*x^2 - 2*x - 3}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % xCos(x) + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + legend entries={$k(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{x*cos(deg(x))}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % x sin(2x) + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + legend entries={$l(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{x*sin(deg(x))}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % -0.5x + 4 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + legend entries={$m(x)$} + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{-1.75*x+4}; + \end{axis} +\end{tikzpicture} +\vfill + + +\clearpage + + +\begin{tikzpicture} + % {0.1*(x+4)*(x+1)*(x-5)} + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{0.1*(x+4)*(x+1)*(x-5)}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % 1/x + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + ] + \addplot[domain=-6:-0.1,samples=40, color=red, very thick]{1/x}; + \addplot[domain=0.1:6,samples=40, color=red, very thick]{1/x}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % -x^2 + 2x + 1 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=10, + legend pos = north east, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{-2*x^2 + 2*x + 1}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % 2x + 1 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=5, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{2*x +1}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % x^2 - 2x - 3 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=10, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{2*x^2 - 2*x - 3}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % xCos(x) + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{x*cos(deg(x))}; + \end{axis} +\end{tikzpicture} +\vfill +\begin{tikzpicture} + % x sin(2x) + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{x*sin(deg(x))}; + \end{axis} +\end{tikzpicture} +\hspace{2cm} +\begin{tikzpicture} + % -0.5x + 4 + \begin{axis}[ + axis lines = center, + %grid = both, + xlabel = {$x$}, + xtick distance=1, + ylabel = {$y$}, + ytick distance=1, + legend pos = north west, + ] + \addplot[domain=-6:6,samples=40, color=red, very thick]{-1.75*x+4}; + \end{axis} +\end{tikzpicture} +\vfill +\end{document} diff --git a/2nd/09_Fonctions_tableaux/1P_qui_est_ce.pdf b/2nd/09_Fonctions_tableaux/1P_qui_est_ce.pdf new file mode 100644 index 0000000..984ce9a Binary files /dev/null and b/2nd/09_Fonctions_tableaux/1P_qui_est_ce.pdf differ diff --git a/2nd/09_Fonctions_tableaux/1P_qui_est_ce.tex b/2nd/09_Fonctions_tableaux/1P_qui_est_ce.tex new file mode 100644 index 0000000..8b74def --- /dev/null +++ b/2nd/09_Fonctions_tableaux/1P_qui_est_ce.tex @@ -0,0 +1,27 @@ +\documentclass[12pt,xcolor=table]{classPres} + +\title{Tableaux pour decrire les fonctions} +\date{Décembre 2021} + + +\begin{document} + +\begin{frame}[fragile]{"Qui est-ce?" des fonctions} + Objectif: Identifier les caractéristiques des graphiques de fonctions qui permettent de les identifier efficacement. + \vfill + En groupe de 3: + \begin{itemize} + \item \textbf{Descripteur}: décrire oralement le graphique. + \item \textbf{Devineur}: doit identifier la fonction décrite. + \item \textbf{Observateur}: prend des notes sur les éléments qui lui semblent les plus efficace pour identifier le graphique. + \end{itemize} + \vfill + +\end{frame} +\end{document} + +%%% Local Variables: +%%% mode: latex +%%% TeX-master: "master" +%%% End: + diff --git a/2nd/09_Fonctions_tableaux/index.rst b/2nd/09_Fonctions_tableaux/index.rst index 2c7ccc8..bba3f3d 100644 --- a/2nd/09_Fonctions_tableaux/index.rst +++ b/2nd/09_Fonctions_tableaux/index.rst @@ -2,7 +2,7 @@ Fonctions tableaux ################## :date: 2021-10-18 -:modified: 2021-11-01 +:modified: 2021-12-14 :authors: Benjamin Bertrand :tags: Fonctions :category: 2nd @@ -11,7 +11,16 @@ Fonctions tableaux Étape 1: Qui est-ce des fonctions ================================= -Les élèves sont en binômes. Ils ont chacun un ensemble de graphiques et ne peuvent voir que le leur. Alternativement, ils vont essayer de faire deviner à l'autre la fonction qu'ils auront choisi. Ils n'auront pas le droit de donner des valeurs de la fonction. Il faudra ensuite qu'ils fassent un bilan sur les éléments de description qui sont les plus efficace pour reconnaitre les fonctions. +Les élèves sont en trinômes. Ils se répartissent les rôles: descripteur, devineur et observateur. + +Le descripteur a une pile de graphique dans laquelle il va tirer un carte après l'autre. Il va devoir décrire la fonction au devineur. Quand le devineur pense avoir identifié la fonction il donne le nom de la fonction et le desripteur le note sur le graphique. + +Pendant ce temps, l'observateur note les éléments de descriptions qui lui ont semblé pertinents pour identifier la fonction. + +.. image:: ./1E_qui_est_ce_fonctions.pdf + :height: 200px + :alt: Fonctions pour le qui est-ce + On espère que sorte la notion de signe d'une fonction et de variations. Ce qui nous permettra d'introduire la notion de tableau de signes et de variations. @@ -26,3 +35,8 @@ A partir de graphique et de fonctions (à tracer avec la calculatrice) les élè =================================== On donne des tableaux les élèves doivent dans un premier temps tracer des graphiques qui peuvent correspondre. On pourra ajouter un exercice d'analyse d'un tableau pour trouver des extremums. + +Étape 4: tableau de signe et inéquations +======================================== + +