feat(2nd): QF S50
This commit is contained in:
BIN
2nd/Questions_flashs/P2/QF_S50-1.pdf
Normal file
BIN
2nd/Questions_flashs/P2/QF_S50-1.pdf
Normal file
Binary file not shown.
86
2nd/Questions_flashs/P2/QF_S50-1.tex
Executable file
86
2nd/Questions_flashs/P2/QF_S50-1.tex
Executable file
@@ -0,0 +1,86 @@
|
|||||||
|
\documentclass[14pt]{classPres}
|
||||||
|
\usepackage{tkz-fct}
|
||||||
|
\usepackage{minted}
|
||||||
|
|
||||||
|
\author{}
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\begin{frame}{Questions flashs}
|
||||||
|
\begin{center}
|
||||||
|
\vfill
|
||||||
|
2nd
|
||||||
|
\vfill
|
||||||
|
30 secondes par calcul
|
||||||
|
\vfill
|
||||||
|
\tiny \jobname
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 1}
|
||||||
|
% Evolution
|
||||||
|
Une quantité a été multiplié par 2,5.
|
||||||
|
\vfill
|
||||||
|
Quel est le taux d'évolution de cette transformation?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 2}
|
||||||
|
% Fractions
|
||||||
|
|
||||||
|
Calculer la quantité suivante
|
||||||
|
|
||||||
|
$$\frac{2}{3} + \frac{10}{3}\times \frac{6}{25}$$
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[fragile]{Calcul 3}
|
||||||
|
% Programmation
|
||||||
|
\begin{center}
|
||||||
|
\begin{minipage}{0.8\linewidth}
|
||||||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||||
|
a = 10
|
||||||
|
b = 10
|
||||||
|
if (a+b) > 30:
|
||||||
|
print("Blah")
|
||||||
|
elif a > 15:
|
||||||
|
print("Youpi")
|
||||||
|
elif b > 15:
|
||||||
|
print("Plop")
|
||||||
|
else:
|
||||||
|
print("Oups")
|
||||||
|
\end{minted}
|
||||||
|
\end{minipage}
|
||||||
|
\end{center}
|
||||||
|
\vfill
|
||||||
|
Que va afficher le programme ?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 4}
|
||||||
|
% Inversion formule
|
||||||
|
\vfill
|
||||||
|
On rappelle la formule
|
||||||
|
\begin{center}
|
||||||
|
\includegraphics[scale=0.8]{./fig/concentration}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
On donne les valeurs $C_m = 15 g.L^{-1}$ et $V = 5L$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
Calculer la valeur de $m$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Fin}
|
||||||
|
\begin{center}
|
||||||
|
On retourne son papier.
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
BIN
2nd/Questions_flashs/P2/QF_S50-2.pdf
Normal file
BIN
2nd/Questions_flashs/P2/QF_S50-2.pdf
Normal file
Binary file not shown.
85
2nd/Questions_flashs/P2/QF_S50-2.tex
Executable file
85
2nd/Questions_flashs/P2/QF_S50-2.tex
Executable file
@@ -0,0 +1,85 @@
|
|||||||
|
\documentclass[14pt]{classPres}
|
||||||
|
\usepackage{tkz-fct}
|
||||||
|
\usepackage{minted}
|
||||||
|
|
||||||
|
\author{}
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\begin{frame}{Questions flashs}
|
||||||
|
\begin{center}
|
||||||
|
\vfill
|
||||||
|
2nd
|
||||||
|
\vfill
|
||||||
|
30 secondes par calcul
|
||||||
|
\vfill
|
||||||
|
\tiny \jobname
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 1}
|
||||||
|
% Evolution
|
||||||
|
Une quantité a été multiplié par 0.7.
|
||||||
|
\vfill
|
||||||
|
Quel est le taux d'évolution de cette transformation?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 2}
|
||||||
|
% Fractions
|
||||||
|
|
||||||
|
Calculer la quantité suivante
|
||||||
|
|
||||||
|
$$\frac{2}{3} - \frac{10}{3}\times \frac{9}{20}$$
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[fragile]{Calcul 3}
|
||||||
|
% Programmation
|
||||||
|
\begin{center}
|
||||||
|
\begin{minipage}{\linewidth}
|
||||||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||||
|
age = int(input("Combien en voulez vous?"))
|
||||||
|
if age > 30:
|
||||||
|
print("beaucoup")
|
||||||
|
elif age > 15:
|
||||||
|
print("Moyen")
|
||||||
|
else:
|
||||||
|
print("Peu")
|
||||||
|
\end{minted}
|
||||||
|
\end{minipage}
|
||||||
|
\end{center}
|
||||||
|
\vfill
|
||||||
|
L'utilisateur a entré 20.
|
||||||
|
|
||||||
|
Que va afficher le programme ?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 4}
|
||||||
|
% Inversion formule
|
||||||
|
\vfill
|
||||||
|
On rappelle la formule
|
||||||
|
\begin{center}
|
||||||
|
\includegraphics[scale=0.6]{./fig/poids}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
On donne les valeurs $P = 100N$ et $g = 2 N.kg^{-1}$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
Calculer la valeur de $m$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Fin}
|
||||||
|
\begin{center}
|
||||||
|
On retourne son papier.
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
BIN
2nd/Questions_flashs/P2/QF_S50-3.pdf
Normal file
BIN
2nd/Questions_flashs/P2/QF_S50-3.pdf
Normal file
Binary file not shown.
85
2nd/Questions_flashs/P2/QF_S50-3.tex
Executable file
85
2nd/Questions_flashs/P2/QF_S50-3.tex
Executable file
@@ -0,0 +1,85 @@
|
|||||||
|
\documentclass[14pt]{classPres}
|
||||||
|
\usepackage{tkz-fct}
|
||||||
|
\usepackage{minted}
|
||||||
|
|
||||||
|
\author{}
|
||||||
|
\title{}
|
||||||
|
\date{}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\begin{frame}{Questions flashs}
|
||||||
|
\begin{center}
|
||||||
|
\vfill
|
||||||
|
2nd
|
||||||
|
\vfill
|
||||||
|
30 secondes par calcul
|
||||||
|
\vfill
|
||||||
|
\tiny \jobname
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 1}
|
||||||
|
% Evolution
|
||||||
|
Une quantité a été multiplié par 0,80.
|
||||||
|
\vfill
|
||||||
|
Quel est le taux d'évolution de cette transformation?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 2}
|
||||||
|
% Fractions
|
||||||
|
|
||||||
|
Calculer la quantité suivante
|
||||||
|
|
||||||
|
$$\frac{10}{3}\times \frac{9}{20} + 1$$
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[fragile]{Calcul 3}
|
||||||
|
% Programmation
|
||||||
|
\begin{center}
|
||||||
|
\begin{minipage}{\linewidth}
|
||||||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||||
|
temps = int(input("Temps de course"))
|
||||||
|
if temps > 7:
|
||||||
|
print("Long")
|
||||||
|
elif temps > 4
|
||||||
|
print("Pas mal")
|
||||||
|
else:
|
||||||
|
print("Wahou")
|
||||||
|
\end{minted}
|
||||||
|
\end{minipage}
|
||||||
|
\end{center}
|
||||||
|
\vfill
|
||||||
|
L'utilisateur a entré 3.
|
||||||
|
|
||||||
|
Que va afficher le programme ?
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Calcul 4}
|
||||||
|
% Inversion formule
|
||||||
|
\vfill
|
||||||
|
On rappelle la formule
|
||||||
|
\begin{center}
|
||||||
|
\includegraphics[scale=0.6]{./fig/poids}
|
||||||
|
\end{center}
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
On donne les valeurs $P = 100N$ et $g = 2 N.kg^{-1}$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
Calculer la valeur de $m$.
|
||||||
|
|
||||||
|
\vfill
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{Fin}
|
||||||
|
\begin{center}
|
||||||
|
On retourne son papier.
|
||||||
|
\end{center}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
|
||||||
|
\end{document}
|
||||||
Reference in New Issue
Block a user