74 lines
1.6 KiB
TeX
Executable File
74 lines
1.6 KiB
TeX
Executable File
\documentclass[14pt]{classPres}
|
|
\usepackage{tkz-fct}
|
|
\usepackage{minted}
|
|
|
|
\author{}
|
|
\title{}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
\begin{frame}{Questions flashs}
|
|
\begin{center}
|
|
\vfill
|
|
2nd
|
|
\vfill
|
|
\textbf{Calculatrice autorisée}
|
|
\vfill
|
|
30 secondes par calcul
|
|
\vfill
|
|
\tiny \jobname
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 1}
|
|
% Information chiffrée
|
|
\vfill
|
|
On diminue une quantité 3 fois de 70\%.
|
|
\vfill
|
|
Quel est le taux d'évolution total de ces évolutions?
|
|
\vfill
|
|
Vous arrondirez le résultat au dixième de degré.
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 2}
|
|
% Information chiffrée
|
|
\vfill
|
|
On décide de diminuer une quantité de 20\%.
|
|
\vfill
|
|
Quel taux d'évolution doit-on appliquer pour faire revenir la quantité à sa valeur initiale?
|
|
\vfill
|
|
Vous arrondirez le résultat au dixième de degré.
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 3}
|
|
% Inéquation
|
|
Résoudre l'inéquation suivante
|
|
\[
|
|
-3x + 12 \geq 3
|
|
\]
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 4}
|
|
% Inéquation graphique
|
|
Quelles sont les solutions de l'inéquation $f(x) \geq 2$?
|
|
\begin{center}
|
|
\begin{tikzpicture}[xscale=0.9, yscale=0.5]
|
|
\tkzInit[xmin=-5,xmax=5,xstep=1,
|
|
ymin=-5,ymax=5,ystep=1]
|
|
\tkzGrid
|
|
\tkzAxeXY
|
|
\tkzFct[domain = -5:5,color=red,very thick]%
|
|
{-0.5*(x+2)**2+4};
|
|
\end{tikzpicture}
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|