71 lines
1.3 KiB
TeX
71 lines
1.3 KiB
TeX
|
\documentclass[14pt]{classPres}
|
||
|
\usepackage{tkz-fct}
|
||
|
\usepackage{minted}
|
||
|
|
||
|
\author{}
|
||
|
\title{}
|
||
|
\date{}
|
||
|
|
||
|
\begin{document}
|
||
|
\begin{frame}{Questions flashs}
|
||
|
\begin{center}
|
||
|
\vfill
|
||
|
2nd
|
||
|
\vfill
|
||
|
30 secondes par calcul
|
||
|
\vfill
|
||
|
\tiny \jobname
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Calcul 1}
|
||
|
% Géométrie repérée
|
||
|
\vfill
|
||
|
Soit $U(-2; 2)$ et $V(1; 2)$ deux points.
|
||
|
|
||
|
\vfill
|
||
|
Calculer la longueur $UV$.
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 2}
|
||
|
% Figure géométriques
|
||
|
Un quadrilatère qui a 4 côtés de même longueur et des diagonales qui se coupent en leur milieu est un ...
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 3}
|
||
|
% Python
|
||
|
\begin{center}
|
||
|
\begin{minipage}{0.8\linewidth}
|
||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||
|
a = 2
|
||
|
for i in range(4):
|
||
|
a = a * i
|
||
|
\end{minted}
|
||
|
\end{minipage}
|
||
|
\end{center}
|
||
|
\vfill
|
||
|
Combien vaut $a$ à la fin du programme ?
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 4}
|
||
|
% Taux d'évolution
|
||
|
\vfill
|
||
|
Une usine produit 90 tonnes de trucs par jour. Elle augmente sa production de 30\%.
|
||
|
|
||
|
\vfill
|
||
|
Combien produira-t-elle?
|
||
|
\vfill
|
||
|
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Fin}
|
||
|
\begin{center}
|
||
|
On retourne son papier.
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
|
||
|
\end{document}
|