diff --git a/TST_sti2d/01_Aire_sous_la_courbe/3E_approximation.tex b/TST_sti2d/01_Aire_sous_la_courbe/3E_approximation.tex new file mode 100644 index 0000000..6ebdb29 --- /dev/null +++ b/TST_sti2d/01_Aire_sous_la_courbe/3E_approximation.tex @@ -0,0 +1,23 @@ +\documentclass[a4paper,10pt]{article} +\usepackage{myXsim} + +\author{Benjamin Bertrand} +\title{Aire sous la courbe - exercice 2} +\date{septembre 2020} + +\pagestyle{empty} + +\DeclareExerciseCollection{banque} +\xsimsetup{ + step=3, +} + +\begin{document} + +\input{exercises.tex} +\printcollection{banque} +\vfill +\printcollection{banque} +\vfill + +\end{document} diff --git a/TST_sti2d/01_Aire_sous_la_courbe/exercises.tex b/TST_sti2d/01_Aire_sous_la_courbe/exercises.tex index 9411e05..4dcdfc5 100644 --- a/TST_sti2d/01_Aire_sous_la_courbe/exercises.tex +++ b/TST_sti2d/01_Aire_sous_la_courbe/exercises.tex @@ -156,4 +156,21 @@ \end{multicols} \end{exercise} +\begin{exercise}[subtitle={Parc de batterie et approximation}, step={3}, origin={Création}, topics={Aire sous la courbe}, tags={Intégrale, Analyse}] + Ci-dessous, un profil plus réaliste de l'énergie produite par un panneau solaire. + + \begin{tikzpicture} + \tkzInit[xmin=0,xmax=24, + ymin=0,ymax=10,ystep=1] + \tkzGrid + \tkzAxeXY + \tkzClip + \tkzFct[thick,color=red,domain=0:24]{exp(-0.5*((x-14)/2)**2)/(2*sqrt(2*pi))} + \tkzText(3,-0.3){\textbf{Courbe de} $\mathbf{f}$} + \tkzDefPointByFct(3) + \tkzText[above right,text=red](tkzPointResult){${\mathcal{C}}_f$} + \end{tikzpicture} + +\end{exercise} + \collectexercisesstop{banque}