37 lines
950 B
TeX
Executable File
37 lines
950 B
TeX
Executable File
\documentclass[a4paper,12pt]{classPres}
|
|
\usepackage{tkz-fct}
|
|
|
|
\author{}
|
|
\title{}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
\begin{frame}{Questions flashs}
|
|
Développer et réduire l'expression
|
|
\[ f(x) = (\sqrt{x} - 1)^2 -2\]
|
|
Mettre sous forme canonique
|
|
\[ g(x) = x(x - \frac{1}{2}) - \frac{1}{2}\]
|
|
\textbf{Bonus:} Combien de y a-t-il de solution aux équations suivantes?
|
|
\[ f(x) = 0 \mbox{ et } g(x) = 0 \]
|
|
\end{frame}
|
|
|
|
\begin{frame}{Graphique de la fonction $f$}
|
|
\begin{tikzpicture}[scale=0.7]
|
|
\tkzInit[xmin=-1,xmax=10,ymin=-5, ymax=5]
|
|
\tkzGrid
|
|
\tkzAxeXY
|
|
\tkzFct[color=red, very thick]{(sqrt(x)-1)**2-2}
|
|
\end{tikzpicture}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Graphique de la fonction $g$}
|
|
\begin{tikzpicture}[scale=1]
|
|
\tkzInit[xmin=-3,xmax=3,ymin=-3, ymax=3]
|
|
\tkzGrid
|
|
\tkzAxeXY
|
|
\tkzFct[color=red, very thick]{x*(x-0.5)-0.5}
|
|
\end{tikzpicture}
|
|
\end{frame}
|
|
|
|
\end{document}
|