95 lines
1.9 KiB
TeX
Executable File
95 lines
1.9 KiB
TeX
Executable File
\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
|
|
\[
|
|
10x - 20 \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
|
|
Quelle est la probabilité d'avoir PF?
|
|
\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(4):
|
|
print("A")
|
|
\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 $U = 50 V$ et $R = 25\Omega$.
|
|
|
|
\vfill
|
|
|
|
Calculer la valeur de $I$.
|
|
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|