Feat: ajout des extremums
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bertrand Benjamin 2022-01-04 15:56:38 +01:00
parent 6930a9a658
commit 95dc72d79b
2 changed files with 39 additions and 2 deletions

View File

@ -80,12 +80,49 @@
\end{axis}
\end{tikzpicture}
\end{minipage}
\end{definition}
\begin{definition}[Monotone]
Une fonction $f$ est dite \textbf{monotone} sur un intervalle $I$ si et seulement si elle ne change pas de variations sur cet intervalle.
\end{definition}
\begin{definition}[ Extremum d'une fonction ]
Soit $f$ une fonction définie sur un intervalle $I$.
\medskip
\begin{minipage}{0.5\linewidth}
On dit que $f$ a pour maximum $M$ sur l'intervalle $I$ si et seulement si
\medskip
\\.\dotfill
\medskip
\\.\dotfill
\medskip
On dit que $f$ a pour minimum $m$ sur l'intervalle $I$ si et seulement si
\medskip
\\.\dotfill
\medskip
\\.\dotfill
\medskip
\end{minipage}
\hfill
\begin{minipage}{0.4\linewidth}
\begin{tikzpicture}
\begin{axis}[
axis lines = center,
%grid = both,
xlabel = {$x$},
xtick distance=1,
xticklabel=\empty,
ylabel = {$y$},
yticklabel=\empty,
legend pos = north west,
]
\addplot[domain=-0.8:0.8,samples=30, color=red, very thick]{x*(x-1)*(x+1)};
\end{axis}
\end{tikzpicture}
\end{minipage}
\end{definition}
\end{document}