2019-2020/TES/Integration/Aire_courbe/2B_encadrement.tex

63 lines
2.8 KiB
TeX

\documentclass[a4paper,10pt]{article}
\usepackage{myXsim}
\title{Notion d'intégrale}
\tribe{Terminale TESL}
\date{Janvier 2020}
\pagestyle{empty}
\begin{document}
\setcounter{section}{1}
\section{Encadrement de l'intégrale d'une fonction}
Dans la pratique, calculer l'aire sous la courbe d'une fonction est une tache difficile. Quand les fonctions sont trop compliquées, on n'a d'autres choix que d'approximer l'aire sous la courbe et donc de trouver un encadrement à cette quantité.
\begin{tabular}{ccccc}
\begin{tikzpicture}[yscale=0.8, xscale=1]
\tkzInit[xmin=0,xmax=4,xstep=1,
ymin=0,ymax=31,ystep=5]
\tkzGrid
\tkzGrid[sub, subxstep=0.5, subystep=1]
\tkzAxeXY[up space=0.5,right space=.2]
\tkzFct[domain = 0:4, line width=1pt]{5*1.5**x}
\draw[thick, fill=green, opacity=0.3] (0,0) -- (0,1) -- (1,1) -- (1,0) --cycle;
\draw[thick, fill=green, opacity=0.3] (1,0) -- (1,1.5) -- (2,1.5) -- (2,0) --cycle;
\draw[thick, fill=green, opacity=0.3] (2,0) -- (2,2.25) -- (3,2.25) -- (3,0) --cycle;
\draw[thick, fill=green, opacity=0.3] (3,0) -- (3,3.375) -- (4,3.375) -- (4,0) --cycle;
\end{tikzpicture}
&&
\begin{tikzpicture}[yscale=0.8, xscale=1]
\tkzInit[xmin=0,xmax=4,xstep=1,
ymin=0,ymax=31,ystep=5]
\tkzGrid
\tkzGrid[sub, subxstep=0.5, subystep=1]
\tkzAxeXY[up space=0.5,right space=.2]
\tkzFct[domain = 0:4, line width=1pt]{5*1.5**x}
\tkzDrawArea[pattern=north west lines,domain =0:4]
\end{tikzpicture}
&&
\begin{tikzpicture}[yscale=0.8, xscale=1]
\tkzInit[xmin=0,xmax=4,xstep=1,
ymin=0,ymax=31,ystep=5]
\tkzGrid
\tkzGrid[sub, subxstep=0.5, subystep=1]
\tkzAxeXY[up space=0.5,right space=.2]
\tkzFct[domain = 0:4, line width=1pt]{5*1.5**x}
\draw[thick, fill=blue, opacity=0.3] (0,0) -- (0,1.5) -- (1,1.5) -- (1,0) --cycle;
\draw[thick, fill=blue, opacity=0.3] (1,0) -- (1,2.25) -- (2,2.25) -- (2,0) --cycle;
\draw[thick, fill=blue, opacity=0.3] (2,0) -- (2,3.375) -- (3,3.375) -- (3,0) --cycle;
\draw[thick, fill=blue, opacity=0.3] (3,0) -- (3,5.0625) -- (4,5.0625) -- (4,0) --cycle;
\end{tikzpicture}
\\
$40$ & < & $\displaystyle \int_0^4 f(x)dx$ & < & $60$
\end{tabular}
Les valeurs obtenues ont été trouvée en sommant les aires des rectangles.
Pour obtenir, une approximation plus précise, on peut diminuer la largeur des rectangles. C'est de cette façon, que l'on définir proprement l'intégrale que l'on nomme \textbf{intégrale de Riemman} (ce terme n'est pas au programme).
\end{document}