Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168749
Image: ubuntu2004
c = circle((1,1), 2, ) c.show(aspect_ratio=1)
c = circle((0,0), 1, rgbcolor=(2,1,0)) c.show(aspect_ratio=1)
c = circle((0,0), 1, rgbcolor=(2,1,0)) c.show(axes=false, aspect_ratio=1)
c1 = circle((-2,0), 1, rgbcolor=(1,2,0), fill=True) c2 = circle((2,0), 1, rgbcolor=(2,0,1)) show(c1+c2,aspect_ratio=1)
plot(x^3, (x,-2,4))
x = var('x') p1 = plot((e^-((1/2)*x))*cos(2*pi*x), (x,0,6), rgbcolor=(1,0,0)) p2 = plot((e^-((1/2)*x)), (x,0,6), rgbcolor=(2,1,0)) show(p1+p2)