Friday, June 29, 2007
Saturday, June 9, 2007
How to sketch a vector field in Maple
When is a Vector field a Gradient vector field?
Department of Mathematics, Statistics and Computer Science
University of Illinois at Chicago
by Paul Brown, Heidi Burgiel, Marc Culler, Heather Dye and John Wood
Copyright © 1999, The University of Illinois at Chicago
Maple is a registered trademark of Waterloo Maple Software
- Introduction
- Vector Fields
- Vector Fields in Maple
- Exercise 1
- Gradient Vector Fields
- Exercise 2
- Exercise 3
- Exercise 4
Given a vector valued function F(x,y) , we can write each component of F as a function:
A vector field is described by a function that takes each point of the plane to a vector.
> fieldplot(F(x,y), x=-1..1, y=-1..1);
Decide whether the following statements are true or false:
a) (x^2 + y^2)/2 is a potential function for the vector field G1(x,y) = [x,y] .
> fieldplot([2*x,0], x=-2..2, y=-2..2, grid=[12,12], arrows=SLIM, color=BLUE, scaling=CONSTRAINED);
> fieldplot([.9*x^2-1, 2*y], x=-2..2, y=-2..2, color=BLUE, arrows=SLIM, scaling=CONSTRAINED);
The next three plots are of vector fields that are not gradient fields for any function.
> fieldplot(F(x,y), x=-2..2, y=-2..2, color=BLUE, grid=[12,12], arrows=SLIM, scaling=CONSTRAINED);
> fieldplot([sin(y), cos(x)], x=-5..5, y=-5..5, arrows=SLIM, color=BLUE, scaling=CONSTRAINED);
Which of the vector fields shown below are not conservative?