63 lines
1.0 KiB
TeX
Executable File
63 lines
1.0 KiB
TeX
Executable File
\documentclass[14pt]{classPres}
|
|
\usepackage{tkz-fct}
|
|
\usepackage[linesnumbered, boxed, french]{algorithm2e}
|
|
|
|
\author{}
|
|
\title{}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
\begin{frame}{Questions flashs}
|
|
\begin{center}
|
|
\vfill
|
|
Tsti2d
|
|
\vfill
|
|
30 secondes par calcul
|
|
\vfill
|
|
\small \jobname
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 1}
|
|
Dériver
|
|
\[
|
|
g(x) = \frac{2x+1}{x}
|
|
\]
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 2}
|
|
Dériver
|
|
\[
|
|
f(x) = (2x + 1)^4
|
|
\]
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 3}
|
|
Compléter l'algorithme pour qu'il calcule la 10e valeur de la suite
|
|
\[
|
|
u_{n+1} = 0.99\times u_n + 0.1
|
|
\]
|
|
\begin{algorithm}[H]
|
|
\SetAlgoLined
|
|
$u \leftarrow 2$ \;
|
|
\Pour{$n$ de 1 à 10}{
|
|
$u \leftarrow ...$ \;
|
|
}
|
|
\end{algorithm}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 4}
|
|
\[
|
|
\cos(a+b) =
|
|
\]
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|