89 lines
2.1 KiB
TeX
Executable File
89 lines
2.1 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}
|
|
% suite
|
|
L'inflation est de 1\% par ans. C'est-à-dire que les prix augmentent de 1\% par ans.
|
|
\vfill
|
|
Un objet coutait 20\euro en 2010. On modélise le prix d'un objet par la suite $(u_n)$.
|
|
\vfill
|
|
Quelle est la nature de la suite ? Préciser les paramètres.
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 2}
|
|
% É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 + 1};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 3}
|
|
% Tangente
|
|
Déterminer graphiquement le nombre dérivé à la fonction $f$ (en rouge) en $x=1$.
|
|
\vfill
|
|
\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=20, color=red, very thick]{x^2};
|
|
\addplot[domain=0.5:2,samples=20, color=blue, very thick]{2*x-1};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 4}
|
|
% équations
|
|
Résoudre l'équation suivante
|
|
\[
|
|
2x+1 = 0
|
|
\]
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|