2022-2023/2nd/Questions_flashs/P3/QF_S02-1.tex

95 lines
1.9 KiB
TeX
Raw Normal View History

2023-01-09 09:43:37 +00:00
\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}
% Inéquation
Résoudre l'inéquation suivante
\[
2x+1 \geq 0
\]
\end{frame}
\begin{frame}[fragile]{Calcul 2}
% Probabilité
On considère l'expérience aléatoire qui consiste à lancer une pièce équilibré deux fois.
On modélise l'expérience par l'arbre suivant
\vfill
\begin{center}
\begin{tikzpicture}
\tikzstyle{level 1}=[sibling distance=40mm]
\tikzstyle{level 2}=[sibling distance=20mm]
\node {.}
child {node {P}
child {node {P}}
child {node {F}}
}
child {node {P}
child {node {P}}
child {node {F}}
};
\end{tikzpicture}
\end{center}
\vfill
Quel est l'univers de cette expérience ?
\vfill
\end{frame}
\begin{frame}[fragile]{Calcul 3}
% Programmation
\begin{center}
\begin{minipage}{0.8\linewidth}
\begin{minted}[bgcolor=base3,linenos]{python}
for i in range(3):
print("moi")
\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 $U = R\times I$.
\vfill
On donne les valeurs $I = 10 A$ et $R = 2\Omega$.
\vfill
Calculer la valeur de $U$.
\vfill
\end{frame}
\begin{frame}{Fin}
\begin{center}
On retourne son papier.
\end{center}
\end{frame}
\end{document}