\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}
    % Information chiffrée

    Ci-dessous, le tableau indiquant la population d'une petite commune

    \begin{center}
        \begin{tabular}{|c|*{3}{c|}}
            \hline
            Année & 2010 & 2015 & 2020 \\
            \hline
            Population & 500 & 900 & 1500 \\
            \hline
        \end{tabular}
    \end{center}
    Calculer le taux d'évolution de la population entre 2010 et 2020.
\end{frame}

\begin{frame}{Calcul 2}
    % Développer
    Développer puis réduire

    \[
        (-2x - 3)(x - 2)
    \]
\end{frame}

\begin{frame}[fragile]{Calcul 3}
    % Statistiques
    Calculer la moyenne des valeurs suivantes
    \[
        5 \qquad 10 \qquad 5 \qquad 1 \qquad 1 \qquad 10
    \]
\end{frame}

\begin{frame}{Calcul 4}
    % Vecteurs
    \begin{minipage}{0.3\linewidth}
        Déterminer un vecteur égal à 
        \[
            \vect{EF}+\vect{FC}+\vect{CD}
        \]
    \end{minipage}
    \hfill
    \begin{minipage}{0.5\linewidth}
        \begin{tikzpicture}[scale=1]
            %\draw (0, 0) grid (6, 6);
            \draw (0, 0) rectangle (6, 6);

            \draw (4, 5) node {x} node [above right] {$A$};
            \draw (2, 1) node {x} node [below right] {$B$};
            \draw (4, 1) node {x} node [below right] {$C$};
            \draw (2, 5) node {x} node [above right] {$D$};
            \draw (1, 3) node {x} node [above left] {$E$};
            \draw (5, 3) node {x} node [above right] {$F$};

            \draw [->, very thick] (1, 1) -- node [midway, left] {$\vect{u}$} ++(1, 2);
            \draw [->, very thick] (1, 4) --  node [midway, below ] {$\vect{v}$} ++ (2, 0);
        \end{tikzpicture}    
    \end{minipage}
\end{frame}

\begin{frame}{Fin}
    \begin{center}
        On retourne son papier.
    \end{center}
\end{frame}


\end{document}