Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

All published worksheets from http://sagenb.org

Views: 168733
Image: ubuntu2004

A Vector Field in R2\mathbb{R}^2

F(x,y)=(y,x)\mathbf{F}(x, y) = (-y, x)

x, y = var('x,y') plot_vector_field((-y, x), (x,-3,3), (y,-3,3), aspect_ratio=1)

Some Vector Fields in R3\mathbb{R}^3

F(x,y,z)=(y,x,1)\mathbf{F}(x, y, z) = (-y, x, 1)

x, y, z = var('x,y,z') plot_vector_field3d((-y, x, 1), (x,-3,3), (y,-3,3), (z,-3,3), aspect_ratio=1)

F(x,y,z)=(y,x,z)\mathbf{F}(x, y, z) = (-y, x, z)

x, y, z = var('x,y,z') plot_vector_field3d((-y, x, z), (x,-3,3), (y,-3,3), (z,-3,3), aspect_ratio=1)

F(x,y,z)=(y,z,x)\mathbf{F}(x, y, z) = (y, z, x)

x, y, z = var('x,y,z') plot_vector_field3d((y, z, x), (x,-3,3), (y,-3,3), (z,-3,3), aspect_ratio=1)