Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168730
Image: ubuntu2004
@interact def _(m=(-5..5), b=(-5..5)): show(plot((m*x+b), (-10,10)))
[removed]
[removed]
[removed]
[removed]
@interact def _(a=(-5..5), y=(-5..5)): show(plot((a*x^2+y), (-5,5)), xmax=5, ymax=5, xmin=-5, ymin=-5)
[removed]
[removed]
[removed]
[removed]
@interact def _(a=(1), b=(0)): show(plot((a*x^2+b), (-5,5)), xmax=5, ymax=5, xmin=-5, ymin=-5)
[removed]
[removed]
[removed]
[removed]
@interact def _(a=(-3..3), b=(-3..3), c=(-3..3)): show(plot((1/((a*x-b))+c), (-10,10)), xmax=10, ymax=10, xmin=-10, ymin=-10)
[removed]
[removed]
[removed]
[removed]
@interact def _(a=(0,2)): show(plot(sin(x*(1+a*x)), (x,0,6)), figsize=4)
[removed]
[removed]
[removed]
[removed]
CPU time: 0.00 s, Wall time: 0.00 s
@interact def _(a=(1,4), b=(0,10)): show(plot(sin(a*x+b), (x,0,6)), figsize=3)
[removed]
[removed]
[removed]
[removed]
CPU time: 0.00 s, Wall time: 0.00 s
interact?