77 lines
1.6 KiB
TeX
Executable File
77 lines
1.6 KiB
TeX
Executable File
\documentclass[14pt]{classPres}
|
|
\usepackage{tkz-fct}
|
|
\usepackage{pgfplots}
|
|
\usetikzlibrary{decorations.markings}
|
|
\pgfplotsset{compat=1.18}
|
|
|
|
\author{}
|
|
\title{}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
\begin{frame}{Questions flashs}
|
|
\begin{center}
|
|
\vfill
|
|
Première ST
|
|
\vfill
|
|
30 secondes par calcul
|
|
\vfill
|
|
\tiny \jobname
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 1}
|
|
% Taux évolution
|
|
Une quantité est augmenté de 15\%.
|
|
\vfill
|
|
Par combien cette quantité a-t-elle été multiplié?
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 2}
|
|
% suite
|
|
Soit $(u_n)$ une suite arithmétique de raison 2 et de premier terme $u_0 = 1$
|
|
\vfill
|
|
Calculer $u_2$
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 3}
|
|
% Taux de variations
|
|
On définit la fonction $f$ par
|
|
\[
|
|
f(x) = x^2
|
|
\]
|
|
\vfill
|
|
Calculer le taux de variation de $f$ entre 1 et 2.
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 4}
|
|
% Équation de droite
|
|
Déterminer l'équation de la droite.
|
|
|
|
\begin{center}
|
|
\begin{tikzpicture}
|
|
\begin{axis}[
|
|
axis lines = center,
|
|
grid = both,
|
|
xlabel = {x},
|
|
xtick distance=1,
|
|
ylabel = {$f(x)$},
|
|
ytick distance=1,
|
|
]
|
|
\addplot[domain=-2:2,samples=2, color=red, very thick]{-2*x + 0.5};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|