Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Views: 81
Visibility: Unlisted (only visible to those who know the link)
Image: ubuntu2204
Kernel: SageMath 9.8
var('x y') plot_vector_field((x,y), (x,-5,5), (y,-5,5))
Image in a Jupyter notebook
# Stewart section 16.3, example 2, not a conservative field plot_vector_field((x-y, x-2), (x, -10, 10), (y,-10,10))
Image in a Jupyter notebook
# Stewart section 16.3, example 3, a conservative field plot_vector_field((3+2*x*y, x^2-3*y^2), (x,-2,2), (y,-2,2))
Image in a Jupyter notebook
plot_vector_field((cos(x), sin(y)), (x,-3,3), (y,-3,3))
Image in a Jupyter notebook
plot_vector_field((y, (cos(x)-2)*sin(x)), (x,-pi,pi), (y,-pi,pi))
Image in a Jupyter notebook
var('x y z') # plot_vector_field3d((x, y, z), (x,0,pi), (y,0,pi), (z,0,pi), viewer='threejs') plot_vector_field3d((x, y, z), (x,0,pi), (y,0,pi), (z,0,pi))
plot_vector_field3d((x*cos(z),-y*cos(z),sin(z)), (x,0,pi), (y,0,pi), (z,0,pi))
f(x,y) = x^2 * sin(2*y) f.gradient()
(x, y) |--> (2*x*sin(2*y), 2*x^2*cos(2*y))
plot_vector_field(f.gradient(), (-3,3), (-3,3))
Image in a Jupyter notebook
f(x,y,z) = z * exp(-x*y) fgrad = f.gradient() print(fgrad) plot_vector_field3d((-y*z*exp(-x*y), -x*z*exp(-x*y), exp(-x*y)), (x,-1,1), (y,-1,1), (z,-1,1))
(x, y, z) |--> (-y*z*e^(-x*y), -x*z*e^(-x*y), e^(-x*y))
f(x,y) = x^2 + y^2 p1 = plot_vector_field(f.gradient(), (x,-2,2), (y,-2,2)) p2 = contour_plot(f, (x,-2,2), (y,-2,2), fill=False) show(p1 + p2)
Image in a Jupyter notebook