This commit is contained in:
parent
027aff050d
commit
cbd8eaa62c
BIN
2nd/Questions_flashs/P4/QF_S14-1.pdf
Normal file
BIN
2nd/Questions_flashs/P4/QF_S14-1.pdf
Normal file
Binary file not shown.
75
2nd/Questions_flashs/P4/QF_S14-1.tex
Executable file
75
2nd/Questions_flashs/P4/QF_S14-1.tex
Executable file
@ -0,0 +1,75 @@
|
||||
\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, 3, $+\infty$}
|
||||
\tkzTabLine{, -, z, +, 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 augmentation de 30\%?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[fragile]{Calcul 3}
|
||||
% Programmation
|
||||
\begin{center}
|
||||
\begin{lstlisting}[language=Python, basicstyle=\small, frame=]
|
||||
a = 1
|
||||
for i in range(3):
|
||||
a = a + i
|
||||
print(a)
|
||||
\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
|
||||
\[
|
||||
-3x + 5 > 14
|
||||
\]
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Fin}
|
||||
\begin{center}
|
||||
On retourne son papier.
|
||||
\end{center}
|
||||
\end{frame}
|
||||
|
||||
|
||||
\end{document}
|
BIN
2nd/Questions_flashs/P4/QF_S14-2.pdf
Normal file
BIN
2nd/Questions_flashs/P4/QF_S14-2.pdf
Normal file
Binary file not shown.
75
2nd/Questions_flashs/P4/QF_S14-2.tex
Executable file
75
2nd/Questions_flashs/P4/QF_S14-2.tex
Executable file
@ -0,0 +1,75 @@
|
||||
\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}
|
Loading…
Reference in New Issue
Block a user