#modeling data with derivatives
14 messages · Page 1 of 1 (latest)
- Wait patiently for a helper to come along.
- Once someone helps you, say thank you and close the thread with:
+close
- Feel free to nominate the person for helper of the week in #helper-nominations
- Do not ping the mods, unless someone is breaking the rules.
- If you're happy with the help you got here, and the server overall, you can contribute financially as well:
,rccw
u hav a ruler? @safe plume can help with graphing
\begin{tikzpicture}
\begin{axis}[
axis lines=center,
xlabel={$x$},
ylabel={$y$},
xmin=-.001,
xmax=.001,
title={Limit behavior of $\sin(x)/x$},
legend style={at={(0,-0.15)},anchor=north west,fill=none}
]
\begin{scope}[thick, samples=201, smooth]
\addplot[domain=-.001:.001, yellow] (x,{sin((x)r)/x});
\addlegendentry{$y = \sin(x)/x$};
\end{scope}
\end{axis}
\end{tikzpicture}
vin100
you can replace the sin((x)r)/x with the function that u wanna plot, and specify the xmin, xmax, ymin and ymax;
im sorry im a little confused on what you just did
i mainly wanted help with part (b), sorry i should have specified that
,calc derivative('2x^2 + 3x -4', 'x')
Result:
4 * x + 3
@safe plume can also help with that