Files
2025-2026/1G_math/Questions_flashs/P2/QF_S51-1.tex

93 lines
1.9 KiB
TeX
Executable File

\documentclass[14pt]{classPres}
\usepackage{minted}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\usepackage{tkz-fct}
\author{}
\title{}
\date{}
\begin{document}
\begin{frame}{Questions flashs}
\begin{center}
\vfill
1G spécialité math
\vfill
\tiny \jobname
\end{center}
\end{frame}
\begin{frame}{Calcul 1}
% Evolution
\vfill
Une quantité vaut 65. Elle augmente de 5\%.
\vfill
Quel calcule doit-on faire pour obtenir sa nouvelle valeur?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 2}
% Dérivation
\vfill
Lire graphiquement la valeur de $f'(2)$.
\vfill
\begin{center}
\begin{tikzpicture}[scale=0.8]
\begin{axis}[
axis lines=middle,
xlabel={$x$},
ylabel={$y$},
xmin=-0.5, xmax=4,
ymin=-0.5, ymax=6,
xtick={0,1,...,4},
ytick={0,1,...,5},
grid=major,
width=13cm,
height=7cm,
]
% Fonction f(x) = 0.2(x-1)^2 + 1
\addplot[domain=0:4.5, samples=100, very thick, blue] {x^2 + 1};
%\addlegendentry{$f$}
% Point en x=2
\addplot[only marks, mark=*, mark size=3pt, blue] coordinates {(1, 2)};
% Tangente au point (2, 1.2) avec pente 0.4
\addplot[domain=0:4, very thick, red, dashed] {2*x};
%\addlegendentry{Tangente en $x=2$}
\end{axis}
\end{tikzpicture}
\end{center}
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 3}
% Vitesse
Elsa parcourt 800 m en 5 minutes.
Quelle est sa vitesse moyenne ?
\end{frame}
\begin{frame}[fragile]{Calcul 4}
% Produit scalaire
On donne $AB = 2$, $AC = 5$ et $\widehat{BAC} = \frac{\pi}{4}$.
Calculer $\vect{AB}.\vect{AC}$
\end{frame}
\begin{frame}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}