Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168695
Image: ubuntu2004

Section 2.2

Sage Tool 2

This Sage file is configured for use as a simple graphing tool.

Define a parameter kk and a distance function ff

k=1 var('t') f(t)=k*t^2

Define the average speed function

g(t)=(f(t+0.001)-f(t))/0.001
plot(f,-4,4)+plot(g,-4,4,color='red')

Plot both the distance function and the approximate speed