feat(1nd): QF S47
Some checks failed
Sync to mirror repository / sync (push) Failing after 1m8s
Publish content / push (push) Successful in 1m45s
Publish content / build (push) Successful in 2m4s
Publish content / deploy (push) Successful in 59s

This commit is contained in:
2025-11-13 13:54:06 +01:00
parent 010916e60e
commit b278ef4c6f
6 changed files with 256 additions and 0 deletions

Binary file not shown.

View 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 robe est vendu 55\euro. Son prix augmente de 30\%.
Par combien est multiplier le prix de la robe?
\end{frame}
\begin{frame}{Calcul 2}
% Evolution
Une quantité passe 16 à 24.
Quel est le taux d'évolution de cette transformation? Donner le résultat en pourcentage.
\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
print(a + b)
\end{minted}
\end{minipage}
\end{center}
\vfill
Que va afficher le programme ?
\vfill
\end{frame}
\begin{frame}{Calcul 4}
% Vecteurs
\begin{minipage}{0.3\linewidth}
Déterminer un vecteur égal à
\[
\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}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}

Binary file not shown.

View 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 robe est vendu 27\euro. Son prix diminue de 15\%.
Par combien est multiplier le prix de la robe?
\end{frame}
\begin{frame}{Calcul 2}
% Evolution
Une quantité passe 15 à 20.
Quel est le taux d'évolution de cette transformation? Donner le résultat en pourcentage.
\end{frame}
\begin{frame}[fragile]{Calcul 3}
% Programmation
\begin{center}
\begin{minipage}{0.8\linewidth}
\begin{minted}[bgcolor=base3,linenos]{python}
poids = 2
prix = 5
print("Ça coutera ", poids*prix)
\end{minted}
\end{minipage}
\end{center}
\vfill
Que va afficher le programme ?
\vfill
\end{frame}
\begin{frame}{Calcul 4}
% Vecteurs
\begin{minipage}{0.3\linewidth}
Déterminer un vecteur égal à
\[
\vect{AF}
\]
\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}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}

Binary file not shown.

View 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 robe est vendu 35\euro. Son prix augmente de 108\%.
Par combien est multiplier le prix de la robe?
\end{frame}
\begin{frame}{Calcul 2}
% Evolution
Une quantité passe 25 à 40.
Quel est le taux d'évolution de cette transformation? Donner le résultat en pourcentage.
\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
c = 8
print("C'est ", a+c)
\end{minted}
\end{minipage}
\end{center}
\vfill
Que va afficher le programme ?
\vfill
\end{frame}
\begin{frame}{Calcul 4}
% Vecteurs
\begin{minipage}{0.3\linewidth}
Déterminer un vecteur égal à
\[
\vect{CB}
\]
\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}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}