Feat(2nd): QF pour S01
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
f67a0d1afd
commit
d1b35d0d16
Binary file not shown.
|
@ -0,0 +1,90 @@
|
|||
\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}
|
||||
% Vecteurs
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
Déterminer un vecteur égal à
|
||||
\[
|
||||
2\vect{EB}
|
||||
\]
|
||||
\end{minipage}
|
||||
\hfill
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
%\draw (0, 0) grid (6, 6);
|
||||
\draw (0, 0) rectangle (6, 6);
|
||||
|
||||
\draw (4, 5) node {x} node [above right] {$A$};
|
||||
\draw (2, 1) node {x} node [below right] {$B$};
|
||||
\draw (4, 1) node {x} node [below right] {$C$};
|
||||
\draw (2, 5) node {x} node [above right] {$D$};
|
||||
\draw (1, 3) node {x} node [above left] {$E$};
|
||||
\draw (5, 3) node {x} node [above right] {$F$};
|
||||
|
||||
\draw [->, very thick] (1, 1) -- node [midway, left] {$\vect{u}$} ++(1, 2);
|
||||
\draw [->, very thick] (1, 4) -- node [midway, below ] {$\vect{v}$} ++ (2, 0);
|
||||
\end{tikzpicture}
|
||||
\end{minipage}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 2}
|
||||
% Taux évolution
|
||||
Une quantité a été multiplié par 1,4.
|
||||
\vfill
|
||||
Quel est le taux d'évolution de cette transformation?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[fragile]{Calcul 3}
|
||||
% Programmation
|
||||
\begin{center}
|
||||
\begin{minipage}{0.8\linewidth}
|
||||
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||
a = 2
|
||||
b = 5
|
||||
if a > 3:
|
||||
print("Blahblahblah")
|
||||
else:
|
||||
print("Oups")
|
||||
\end{minted}
|
||||
\end{minipage}
|
||||
\end{center}
|
||||
\vfill
|
||||
Que va afficher le programme ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 4}
|
||||
% Equation
|
||||
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}
|
Binary file not shown.
|
@ -0,0 +1,91 @@
|
|||
\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}
|
||||
% Vecteurs
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
Déterminer un vecteur égal à
|
||||
\[
|
||||
2\vect{EB} + \vect{u}
|
||||
\]
|
||||
\end{minipage}
|
||||
\hfill
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
%\draw (0, 0) grid (6, 6);
|
||||
\draw (0, 0) rectangle (6, 6);
|
||||
|
||||
\draw (4, 5) node {x} node [above right] {$A$};
|
||||
\draw (2, 1) node {x} node [below right] {$B$};
|
||||
\draw (4, 1) node {x} node [below right] {$C$};
|
||||
\draw (2, 5) node {x} node [above right] {$D$};
|
||||
\draw (1, 3) node {x} node [above left] {$E$};
|
||||
\draw (5, 3) node {x} node [above right] {$F$};
|
||||
|
||||
\draw [->, very thick] (1, 1) -- node [midway, left] {$\vect{u}$} ++(1, 2);
|
||||
\draw [->, very thick] (1, 4) -- node [midway, below ] {$\vect{v}$} ++ (2, 0);
|
||||
\end{tikzpicture}
|
||||
\end{minipage}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 2}
|
||||
% Taux évolution
|
||||
Une quantité a été multiplié par 2,2.
|
||||
\vfill
|
||||
Quel est le taux d'évolution de cette transformation ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[fragile]{Calcul 3}
|
||||
% Programmation
|
||||
\begin{center}
|
||||
\begin{minipage}{0.8\linewidth}
|
||||
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||
a = 10
|
||||
if a > 14:
|
||||
print("Blahblahblah")
|
||||
elif a > 5:
|
||||
print("Youpi")
|
||||
else:
|
||||
print("Oups")
|
||||
\end{minted}
|
||||
\end{minipage}
|
||||
\end{center}
|
||||
\vfill
|
||||
Que va afficher le programme ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 4}
|
||||
% Equation
|
||||
Résoudre l'équation suivante
|
||||
\[
|
||||
3x - 9 = 0
|
||||
\]
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Fin}
|
||||
\begin{center}
|
||||
On retourne son papier.
|
||||
\end{center}
|
||||
\end{frame}
|
||||
|
||||
|
||||
\end{document}
|
Binary file not shown.
|
@ -0,0 +1,92 @@
|
|||
\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}
|
||||
% Vecteurs
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
Déterminer un vecteur égal à
|
||||
\[
|
||||
2\vect{v} - \vect{u}
|
||||
\]
|
||||
\end{minipage}
|
||||
\hfill
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
%\draw (0, 0) grid (6, 6);
|
||||
\draw (0, 0) rectangle (6, 6);
|
||||
|
||||
\draw (4, 5) node {x} node [above right] {$A$};
|
||||
\draw (2, 1) node {x} node [below right] {$B$};
|
||||
\draw (4, 1) node {x} node [below right] {$C$};
|
||||
\draw (2, 5) node {x} node [above right] {$D$};
|
||||
\draw (1, 3) node {x} node [above left] {$E$};
|
||||
\draw (5, 3) node {x} node [above right] {$F$};
|
||||
|
||||
\draw [->, very thick] (1, 1) -- node [midway, left] {$\vect{u}$} ++(1, 2);
|
||||
\draw [->, very thick] (1, 4) -- node [midway, below ] {$\vect{v}$} ++ (2, 0);
|
||||
\end{tikzpicture}
|
||||
\end{minipage}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 2}
|
||||
% Taux évolution
|
||||
Une quantité a été multiplié par 0,8.
|
||||
\vfill
|
||||
Quel est le taux d'évolution de cette transformation ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[fragile]{Calcul 3}
|
||||
% Programmation
|
||||
\begin{center}
|
||||
\begin{minipage}{0.8\linewidth}
|
||||
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||
a = 10
|
||||
b = 20
|
||||
if (a+b) > 25:
|
||||
print("Blahblahblah")
|
||||
elif a > 5:
|
||||
print("Youpi")
|
||||
else:
|
||||
print("Oups")
|
||||
\end{minted}
|
||||
\end{minipage}
|
||||
\end{center}
|
||||
\vfill
|
||||
Que va afficher le programme ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 4}
|
||||
% Equation
|
||||
Résoudre l'équation suivante
|
||||
\[
|
||||
5x - 9 = 6
|
||||
\]
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Fin}
|
||||
\begin{center}
|
||||
On retourne son papier.
|
||||
\end{center}
|
||||
\end{frame}
|
||||
|
||||
|
||||
\end{document}
|
Binary file not shown.
|
@ -0,0 +1,94 @@
|
|||
\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}
|
||||
% Vecteurs
|
||||
\begin{minipage}{0.3\linewidth}
|
||||
Déterminer un vecteur égal à
|
||||
\[
|
||||
\vect{u} + \vect{v}
|
||||
\]
|
||||
\end{minipage}
|
||||
\hfill
|
||||
\begin{minipage}{0.5\linewidth}
|
||||
\begin{tikzpicture}[scale=1]
|
||||
%\draw (0, 0) grid (6, 6);
|
||||
\draw (0, 0) rectangle (6, 6);
|
||||
|
||||
\draw (4, 5) node {x} node [above right] {$A$};
|
||||
\draw (2, 1) node {x} node [below right] {$B$};
|
||||
\draw (4, 1) node {x} node [below right] {$C$};
|
||||
\draw (2, 5) node {x} node [above right] {$D$};
|
||||
\draw (1, 3) node {x} node [above left] {$E$};
|
||||
\draw (5, 3) node {x} node [above right] {$F$};
|
||||
|
||||
\draw [->, very thick] (1, 1) -- node [midway, left] {$\vect{u}$} ++(1, 2);
|
||||
\draw [->, very thick] (1, 4) -- node [midway, below ] {$\vect{v}$} ++ (2, 0);
|
||||
\end{tikzpicture}
|
||||
\end{minipage}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 2}
|
||||
% Taux évolution
|
||||
Une quantité a été multiplié par 1,2.
|
||||
\vfill
|
||||
Quel est le taux d'évolution de cette transformation ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}[fragile]{Calcul 3}
|
||||
% Programmation
|
||||
\begin{center}
|
||||
\begin{minipage}{0.8\linewidth}
|
||||
\begin{minted}[bgcolor=base3,linenos]{python}
|
||||
a = 10
|
||||
b = 20
|
||||
if (a+b) < 25:
|
||||
print("1")
|
||||
elif a > 5:
|
||||
print("2")
|
||||
elif b > 1:
|
||||
print("3")
|
||||
else:
|
||||
print("Oups")
|
||||
\end{minted}
|
||||
\end{minipage}
|
||||
\end{center}
|
||||
\vfill
|
||||
Que va afficher le programme ?
|
||||
\vfill
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Calcul 4}
|
||||
% Equation
|
||||
Résoudre l'équation suivante
|
||||
\[
|
||||
2x - 10 = 0
|
||||
\]
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Fin}
|
||||
\begin{center}
|
||||
On retourne son papier.
|
||||
\end{center}
|
||||
\end{frame}
|
||||
|
||||
|
||||
\end{document}
|
Loading…
Reference in New Issue