Log in to edit a copy.
Download.
Other published documents...
Calculus UNIT501 What's an AnitDerivative?
2962 days ago by MATH4R2013
f(x)=cos(x) integrate(f(x),x)
f(x)=cos(2*x) integrate(f(x),x)
f(x)=3*x^2 integrate(f(x),x)
f(x)=1/(2*sqrt(x)) integrate(f(x),x)
f(x)=1/x^2 integrate(f(x),x)
f(x)=2 integrate(f(x),x)
f(x)=10*x+2 integrate(f(x),x)
f(x)=-x^2+10*x+2 integrate(f(x),x)
f(x)=sqrt(x) integrate(f(x),x)
f(x)=1/sqrt(x) integrate(f(x),x)
f(x)=6*cos(2*x) integrate(f(x),x)
f(x)=5*cos(x/2) integrate(f(x),x)
f(x)=cos(2*pi*x) integrate(f(x),x)
var('g') a(t)=g integrate(a(t),t)
var('v0') v(t)=g*t+v0 integrate(v(t),t)
var('s0') s(t)=g*t^2/2+v0*t+s0 show(s(t)) v(t)=diff(s(t),t) show(v(t)) a(t)=diff(v(t),t) show(a(t))