80 lines
2.1 KiB
TeX
Executable File
80 lines
2.1 KiB
TeX
Executable File
\documentclass[14pt]{classPres}
|
|
\setmainfont{OpenDyslexic}
|
|
\usepackage{pgfplots}
|
|
|
|
\author{}
|
|
\title{}
|
|
\date{}
|
|
|
|
\begin{document}
|
|
\begin{frame}{Questions flash}
|
|
\begin{center}
|
|
\vfill
|
|
4e
|
|
\vfill
|
|
30 secondes par calcul
|
|
\vfill
|
|
%\Large{Calculatrice autorisée}
|
|
\vfill
|
|
\tiny \jobname
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 1}
|
|
% géométrie
|
|
Calculer le volume du pavé
|
|
\begin{center}
|
|
\begin{tikzpicture}[every edge quotes/.append style={auto}]
|
|
\pgfmathsetmacro{\cubex}{5}
|
|
\pgfmathsetmacro{\cubey}{4}
|
|
\pgfmathsetmacro{\cubez}{3}
|
|
\draw [draw=black, every edge/.append style={draw=black, densely dashed, opacity=.5}, fill=blue!20]
|
|
(0,0,0) coordinate (o) -- ++(-\cubex,0,0) coordinate (a) -- ++(0,-\cubey,0) coordinate (b) edge coordinate [pos=1] (g) ++(0,0,-\cubez) -- ++(\cubex,0,0) coordinate (c) -- cycle
|
|
(o) -- ++(0,0,-\cubez) coordinate (d) -- ++(0,-\cubey,0) coordinate (e) edge (g) -- (c) -- cycle
|
|
(o) -- (a) -- ++(0,0,-\cubez) coordinate (f) edge (g) -- (d) -- cycle;
|
|
\path [every edge/.append style={draw=black, |-|}]
|
|
(b) +(0,-5pt) coordinate (b1) edge ["5cm"'] (b1 -| c)
|
|
(b) +(-5pt,0) coordinate (b2) edge ["4cm"] (b2 |- a)
|
|
(c) +(3.5pt,-3.5pt) coordinate (c2) edge ["3cm"'] ([xshift=3.5pt,yshift=-3.5pt]e)
|
|
;
|
|
\end{tikzpicture}
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
\begin{frame}{Calcul 2}
|
|
% Conversions
|
|
Convertir en heures
|
|
\vfill
|
|
\[
|
|
20min
|
|
\]
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 3}
|
|
\vfill
|
|
Je peux acheter 32 voiturettes pour 5\euro ou 50 voiturettes pour 6,25\euro
|
|
\vfill
|
|
Peut-on prévoir le prix de 10 voiturettes?
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}[fragile]{Calcul 4}
|
|
% Calcul littéral
|
|
Développer puis réduire l'expression suivante
|
|
\vfill
|
|
\[
|
|
(6x - 2)\times 3 =
|
|
\]
|
|
\vfill
|
|
\end{frame}
|
|
|
|
\begin{frame}{Fin}
|
|
\begin{center}
|
|
On retourne son papier.
|
|
\end{center}
|
|
\end{frame}
|
|
|
|
|
|
\end{document}
|