\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}
    \vfill
    Chaque année une quantité augmente de 20\%. En 2020, elle vaut 100.
    \vfill
    Quels calculs va-t-on devoir taper à la calculatrice pour calculer la valeur de cette quantité en 2022?
    \vfill
\end{frame}

\begin{frame}{Calcul 2}
    Une paire de chaussures coûte 120 €.Pendant les soldes, elle est vendue à 90 €. 

    Déterminer le pourcentage de réduction appliqué.
\end{frame}

\begin{frame}{Calcul 3}
    \vfill
    On définit la loi de la variable aléatoire $X$ par
    \begin{center}
        \begin{tabular}{|c|*{5}{p{1cm}|}}
           \hline 
           $x_i$ & -2 & -1 & 0 & 4 & 10 \\
           \hline
           $p_i$ & 0.1 & 0.2 & 0.5 & 0.15 & 0.05 \\
           \hline
        \end{tabular}
    \end{center}
    \vfill
    Calculer $P(X > 0)$
    \vfill
\end{frame}

\begin{frame}[fragile]{Calcul 4}
    Soit $(d)$ la droite d'équation $y = 1.5x + 2.5$

    \vfill
    Est-ce que le point $A (1; 2.5)$ est sur la droite?
    \vfill
    \pause
    \begin{tikzpicture}[xscale=0.8, yscale=0.5]
        \tkzInit[xmin=-5,xmax=5,xstep=1,
        ymin=-5,ymax=5,ystep=1]
        \tkzGrid
        \tkzAxeXY
        \tkzFct[domain=-5:5,color=red,very thick]%
        {1.5*\x+2.5};
    \end{tikzpicture}
\end{frame}

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


\end{document}