76 lines
1.4 KiB
TeX
76 lines
1.4 KiB
TeX
|
\documentclass[14pt]{classPres}
|
||
|
\usepackage{tkz-fct}
|
||
|
\usepackage{listings}
|
||
|
|
||
|
\author{}
|
||
|
\title{}
|
||
|
\date{}
|
||
|
|
||
|
\begin{document}
|
||
|
\begin{frame}{Questions flash}
|
||
|
\begin{center}
|
||
|
\vfill
|
||
|
2nd
|
||
|
\vfill
|
||
|
30 secondes par calcul
|
||
|
\vfill
|
||
|
{\Large Calculatrice autorisée}
|
||
|
\vfill
|
||
|
\tiny \jobname
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 1}
|
||
|
% Tableaux signe et variations
|
||
|
\vfill
|
||
|
\begin{tikzpicture}
|
||
|
\tkzTabInit[lgt=2,espcl=2]{$ x $/1,$ z(x) $/2}{$-\infty$, -4, $+\infty$}
|
||
|
\tkzTabLine{, -, z, +, }
|
||
|
\end{tikzpicture}
|
||
|
|
||
|
\vfill
|
||
|
Résoudre l'inéquation $z(x) < 0$
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Calcul 2}
|
||
|
% Information chiffrée
|
||
|
\vfill
|
||
|
Quel taux d'évolution doit-on appliquer pour revenir à la valeur initial après une diminution de 20\%?
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 3}
|
||
|
% Programmation
|
||
|
\begin{center}
|
||
|
\begin{lstlisting}[language=Python, basicstyle=\small, frame=]
|
||
|
score = 1
|
||
|
for i in range(4):
|
||
|
score = score * i
|
||
|
print(score)
|
||
|
\end{lstlisting}
|
||
|
\end{center}
|
||
|
\vfill
|
||
|
Que va afficher le programme?
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 4}
|
||
|
% Inéquations
|
||
|
Résoudre l'inéquation suivante
|
||
|
\vfill
|
||
|
\[
|
||
|
3 \leq 5 + 4x
|
||
|
\]
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Fin}
|
||
|
\begin{center}
|
||
|
On retourne son papier.
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
|
||
|
\end{document}
|