Feat: use parabola to draw

This commit is contained in:
Bertrand Benjamin 2021-09-09 11:30:20 +02:00
parent 3492be05de
commit 61a2818f73
2 changed files with 3 additions and 2 deletions

View File

@ -50,7 +50,8 @@ Une fonction modélisera \textbf{la transformation} d'une grandeur en une autre.
xlabel={Distance},
ylabel={Hauteur}]
\end{axis}
\draw[blue] (0,0) plot[domain=1:4, very thick] (\x,{-1.33*\x*\x+6.66*\x-4.33});
%\draw[blue] (0,0) plot[domain=1:4, very thick] (\x,{-1.33*\x*\x+6.66*\x-4.33});
\draw[thick] (1,1) parabola bend (3.5,4) (6,1);
\end{tikzpicture}
\begin{tikzpicture}[baseline=(current bounding box.south), xscale=1, yscale=1]
\begin{axis}[ticks=none,
@ -62,7 +63,7 @@ Une fonction modélisera \textbf{la transformation} d'une grandeur en une autre.
xlabel={Hauteur},
ylabel={Distance}]
\end{axis}
\draw[blue] (0,0) plot[domain=1:4, very thick] ({-1.33*\x*\x+6.66*\x-4.33}, \x);
\draw[yshift=6.5cm, rotate=-90,thick] (1,1) parabola bend (3.5,4) (6,1);
\end{tikzpicture}
Le premier graphique montre que l'on peut transformer la distance en une hauteur. On dit que l'on peut exprimer la hauteur en fonction de la distance.