97 lines
1.9 KiB
TeX
97 lines
1.9 KiB
TeX
|
\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 + 4 \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 pile un seul pile?
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}[fragile]{Calcul 3}
|
||
|
% Programmation
|
||
|
\begin{center}
|
||
|
\begin{minipage}{0.8\linewidth}
|
||
|
\begin{minted}[bgcolor=base3,linenos]{python}
|
||
|
total = 0
|
||
|
for i in range(3):
|
||
|
total = total + i
|
||
|
print(total)
|
||
|
\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 $I = 5A$.
|
||
|
|
||
|
\vfill
|
||
|
|
||
|
Calculer la valeur de $R$.
|
||
|
|
||
|
\vfill
|
||
|
\end{frame}
|
||
|
|
||
|
\begin{frame}{Fin}
|
||
|
\begin{center}
|
||
|
On retourne son papier.
|
||
|
\end{center}
|
||
|
\end{frame}
|
||
|
|
||
|
|
||
|
\end{document}
|