77 lines
1.6 KiB
TeX
77 lines
1.6 KiB
TeX
|
\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 diminué de 30\%.
|
||
|
\vfill
|
||
|
Par combien cette quantité a-t-elle été multiplié ?
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Calcul 2}
|
||
|
% suite
|
||
|
Soit $(u_n)$ une suite géométrique 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 + 1
|
||
|
\]
|
||
|
\vfill
|
||
|
Calculer le taux de variation de $f$ entre 0 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=-3:3,samples=2, color=red, very thick]{-0.5*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}
|