Log in to edit a copy.
Download.
This page is rated 1.0.
Other published documents...
Playing with SAGE
1297 days ago by pub
x = var('x') diff(x^2, x)
2*x
2*x
x = var('x') p1 = plot(x^2, -5, 5, rgbcolor=hue(0.6)) show(p1)
x = var('x') p1 = plot(x^2, -5, 5, rgbcolor=hue(0.6)) p2 = plot(2*x, -5, 5, rgbcolor=hue(0.3)) show(p1 + p2)