\documentclass[12pt]{classPres} \usepackage{tkz-fct} \author{} \title{} \date{} \begin{document} \begin{frame}{Questions flashs} \begin{center} \vfill Terminale ST \vfill 30 secondes par calcul \vfill \tiny \jobname \end{center} \end{frame} \begin{frame}{Calcul 1} Soit $X\sim \mathcal{B}(5, 0.1)$. Calculer la quantité suivante \[ E[X] = \] On rappelle le triangle de Pascal \begin{tabular}{|*{7}{p{0.8cm}|}} \hline n \verb|\| k & 0 & 1 & 2 & 3 & 4 & 5\\ \hline 0 & 1 & & & & &\\ \hline 1 & 1 & 1 & & & &\\ \hline 2 & 1 & 2 & 1 & & &\\ \hline 3 & 1 & 3 & 3 & 1 & &\\ \hline 4 & 1 & 4 & 6 & 4 & 1 &\\ \hline 5 & 1 & 5 & 10 & 10 & 5 & 1\\ \hline \end{tabular} \end{frame} \begin{frame}[fragile]{Calcul 2} Soit $(u_n)$ une suite arithmétique de raison 2 et de premier terme 10. Compléter le programme qui calcule la somme des 4 premiers termes. \begin{lstlisting}[language=Python, basicstyle=\small, frame=] # Initialisation u = ... S = ... # Boucle for i in range(....): u = ... S = ... # Résultat final print(....) \end{lstlisting} \end{frame} \begin{frame}{Calcul 3} \noindent \begin{tabular}{|*{4}{p{2cm}|}c|} \hline & Moins de 20ans & entre 20 et 50 ans & Plus de 50ans & Total \\ \hline Guéris & 20 & 16 & 30 & 66\\ \hline Malade & 24 & 10 & 5 & 39\\ \hline Total & 44 & 26 & 35 & 105\\ \hline \end{tabular} On note \[ A = \left\{ \mbox{Malade} \right\} \qquad B = \left\{ \mbox{Plus de 50ans} \right\} \qquad \] \vfill Calculer $P_A(B) = $ \vfill \end{frame} \begin{frame}[fragile]{Calcul 4} On note $(u_n)$ la suite géométrique de raison $q = 0.5$ et de premier terme $u_0 = 100$. Calculer \[ \sum_{n=0}^{10} u_n = \] \end{frame} \begin{frame}{Fin} \begin{center} On retourne son papier. \end{center} \end{frame} \end{document}