Feat: mode plus dur pour le qui est-ce
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e0729fb3a4
commit
36aeb8eecb
Binary file not shown.
@ -269,4 +269,250 @@
|
|||||||
\end{axis}
|
\end{axis}
|
||||||
\end{tikzpicture}
|
\end{tikzpicture}
|
||||||
\vfill
|
\vfill
|
||||||
|
|
||||||
|
\clearpage
|
||||||
|
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% 2x + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=1,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$f(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x+1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% 2x - 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=1,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$g(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x - 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -0.5x + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
legend pos = north east,
|
||||||
|
legend entries={$h(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-0.5*x+1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -0.5x - 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=5,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$i(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-0.5*x - 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 - 2x - 3
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$j(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x^2 - 2*x - 3};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 - 2x
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$k(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{x^2 - 2*x};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -x^2 + 2x
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$l(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-x^2 + 2*x};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
legend pos = north west,
|
||||||
|
legend entries={$m(x)$}
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{x^2 + 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
|
||||||
|
\clearpage
|
||||||
|
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% 2x + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=1,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x+1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% 2x - 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=1,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x - 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -0.5x + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-0.5*x+1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -0.5x - 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=5,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-0.5*x - 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 - 2x - 3
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{2*x^2 - 2*x - 3};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 - 2x
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{x^2 - 2*x};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% -x^2 + 2x
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{-x^2 + 2*x};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\hspace{2cm}
|
||||||
|
\begin{tikzpicture}
|
||||||
|
% x^2 + 1
|
||||||
|
\begin{axis}[
|
||||||
|
axis lines = center,
|
||||||
|
%grid = both,
|
||||||
|
xlabel = {$x$},
|
||||||
|
xtick distance=1,
|
||||||
|
ylabel = {$y$},
|
||||||
|
ytick distance=10,
|
||||||
|
]
|
||||||
|
\addplot[domain=-6:6,samples=40, color=red, very thick]{x^2 + 1};
|
||||||
|
\end{axis}
|
||||||
|
\end{tikzpicture}
|
||||||
|
\vfill
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
Loading…
Reference in New Issue
Block a user