Help Needed: Studying Vector Calculus

In summary, Pete says that the two books he recommends are Div, Grad, Curl by Schey and Vector Analysis by Seymour Lipschutz. He says that the book he recommends is available at his library and that one of them is available online. Arild asks Pete how to solve a problem involving the partial derivatives of a function and Pete provides a step by step guide. Finally, Arild asks Pete about the spherical coordinate system and Pete provides a basic explanation.
  • #1
galipop
51
0
Hi All,

I've started to study vector calculus and am finding it a bit daunting. The notes the lecturer has supplied aren't too helpful. Does anyone know of some decent resources on the web that could help me out?

Many Thanks,

Pete
 
Physics news on Phys.org
  • #2
I don't know about the web but I know of two awesome books on vector analysis. Maybe they're in your library?
- Div, Grad, Curl & All That by Schey. Schey was a theoretical physicist and all the stuff is motivated by stuff that happens in electricity & magnetism, so it's pretty concrete
- Vector Analysis by Seymour Lipschutz (sp?) <- that's a Schaum's book
 
  • #3
Believe me, once you get there, Stokes and Divergence Thms will make MOST of your troubles disappear for your course :)

Secret weapons.
 
  • #4
heh. w00t!
 
  • #5
Ok Thanks. One of those books is available in my library, so I'll go check it out on the weekend.

I'm working on some proof exercises and I was hoping someone could show me how to get started on this one:

nabla x nabla f = 0

Thanks

Pete
 
  • #6
I think that's curl( grad( f ) ) right? if that's what it is, just do it. That function f has different components, so differentiate it componentwise with the nabla, then do the curl on what you get. So that would be the x derivative of the first component (call it f_1 or something), y derivative of the 2nd component, etc then do the curl on that vector.
 
  • #7
Thanks to everyone for the tips so far. I'm starting to get an idea about vector fields and vector functions.

I'm looking at another problem now:

Vector field F is defined by F = grad xy. Write out the components of F.

Ok, to begin i use the following identity: grad xy = x.grad y + y.grad x.

next
grad y = (dy/dx, dy/dy, dy/dz)
and
grad x = (dx/dx, dx/dy, dx/dz)

so grad xy = x.(dy/dx, dy/dy, dy/dz) + y.(dx/dx, dx/dy, dx/dz)

then i multiply this out and the components should just drop out right?
 
  • #8
First of all, you should try to use the LATEX format when writing maths.
I take it that you meant:
[tex]\nabla{xy}=x\nabla{y}+y\nabla{x}=[/tex]

[tex]x(\frac{\partial{y}}{\partial{x}},\frac{\partial{y}}{\partial{y}},\frac{\partial{y}}{\partial{z}})+y(\frac{\partial{x}}{\partial{x}},\frac{\partial{x}}{\partial{y}},\frac{\partial{x}}{\partial{z}})[/tex]

If this is what you meant to write, then it is correct.
But, what must the values of the partial derivatives be; for example,
what is [tex]\frac{\partial{x}}{\partial{z}}[/tex] ?
 
  • #9
thanks for the quick reply.

I'm not sure how to exvalute the partial derivatives for this example. Are you saying I don't need z?
 
  • #10
x,y,z are independent variables!
What does this imply about partial derivatives.

I'll get you started:
Suppose you have a function f in formally 3 variables (x,y,z), and let f
have the functional form f(x,y,z)=y.
That is, the value of f remains constant for any changes in the values of x and z!

Now let us look at the definition of the partial derivative with respect to x:
[tex]\frac{\partial{f}}{\partial{x}}=\lim_{\bigtriangleup{x}\rightarrow{0}}\frac{f(x+\bigtriangleup{x},y,z)-f(x,y,z)}{\bigtriangleup{x}}=[/tex]
[tex]\lim_{\bigtriangleup{x}\rightarrow{0}}\frac{y-y}{\bigtriangleup{x}}=0[/tex]
 
  • #11
[tex]\nabla{xy}=x(0,1,0) + y(1,0,0)[/tex]
[tex]\nabla{xy}=xj + yi[/tex]

How does that look?
 
  • #12
galipop said:
Ok Thanks. One of those books is available in my library, so I'll go check it out on the weekend.

Which one? That Div Grad Curl book is really good. See if you can get that one somehow if it's not at the library.
 
  • #13
galipop said:
[tex]\nabla{xy}=x(0,1,0) + y(1,0,0)[/tex]
[tex]\nabla{xy}=xj + yi[/tex]

How does that look?
That looks great.
 
  • #15
Marsden&Tromba is an excellent book, IMO.
 
  • #16
Ok Arildno I have one more question :) I've almost finished my exercises now.

Let r be the distance from the origin to the given point P. Using either Cartesian or spherical coordinate system, evaluate:

[tex]\nabla(r^-2)[/tex]

where do I go from here? I'm not even sure what topic this falls under.

Thanks again
 
  • #17
If you do not know about spherical coordinate systems, here's how you should proceed
in Cartesian coordinates.
Clearly, we have:
[tex]r(x,y,z)=\sqrt{x^{2}+y^{2}+z^{2}}[/tex]

By the chain rule, we must have, for example:
[tex]\frac{\partial}{\partial{x}}\frac{1}{r^{2}}=-\frac{2}{r^{3}}\frac{\partial{r}}{\partial{x}}[/tex]
 
  • #18
I might be off, but here's how I would approach that:

Using cartesian coordinates:

[tex]
\begin{align*}
r&=\sqrt{x^2+y^2}\\
r^{-2}&=(x^2+y^2)^{-1}\\
\nabla r^{-2}&=\nabla (x^2+y^2)^{-1}\\
\mbox{let }f&=(x^2+y^2)^{-1}\\
\nabla f&=\frac{\partial f}{\partial x}\mathbf{i} + \frac{\partial f}{\partial y}\mathbf{j}\\
\frac{\partial f}{\partial x}&=-(x^2+y^2)^{-2}(2x)\\
\frac{\partial f}{\partial y}&=-(x^2+y^2)^{-2}(2y)\\
\therefore \nabla r^{-2}&=-\frac{2x}{(x^2+y^2)^2}\mathbf{i}-
\frac{2y}{(x^2+y^2)^2}\mathbf{j}
\end{align*}
[/tex]

Edit: Fixed a misplaced sign in final result.

Also, if r is supposed to be the position vector in 3 dimensions, I forgot to include the z direction in the above. However, the result should be similar.
 
Last edited:
  • #19
Anyone care to show me how to do this using the spherical coordinate system?
 
  • #20
OK:
What you need, is the expression for the gradient operator in spherical coordinates:

[tex]\nabla=\vec{i}_{r}\frac{\partial}{\partial{r}}+\vec{i}_{\theta}\frac{\partial}{r\sin\phi\partial\theta}+\vec{i}_{\phi}\frac{\partial}{r\partial\phi}[/tex]

Here, we have the transformation rules:
[tex]x=r\sin\phi\cos\theta,y=r\sin\phi\sin\theta,z=r\cos\phi[/tex]
whereas the unit vectors have the form:
[tex]\vec{i}_{r}=\sin\phi(\cos\theta\vec{i}+\sin\theta\vec{j})+\cos\phi\vec{k}[/tex]
[tex]\vec{i}_{\phi}=\cos\phi(\cos\theta\vec{i}+\sin\theta\vec{j})-\sin\phi\vec{k}[/tex]
[tex]\vec{i}_{\theta}=-\sin\theta\vec{i}+\cos\theta\vec{j}[/tex]

By applying now the gradient to a function f(r), we gain:
[tex]\nabla{f}=\frac{df}{dr}\vec{i}_{r}[/tex]
 
Last edited:
  • #21
curiously, i believe essentially all books on several variable calculus, and on vector calculus are rather good, as is true of books on complex variables. The same is not true of books on real variables, elementary analysis, books on elementary calculus, or books on algebra.

i learned about gradients and several variables calculus from "calculus of several variables", by george fleming. There is also an excellent appendix there on calculus of one variable inclduding elementary topology of the real line, which served as a review course of high quality on that topic.


i also like spivak's calculus on manifolds very much. for one thing it is only 140 pages.
 

1) What is vector calculus?

Vector calculus is a branch of mathematics that deals with the study of vector fields and their derivatives, such as gradient, divergence, and curl. It is used to solve problems involving physical quantities that have both magnitude and direction, such as force, velocity, and electric fields.

2) Why is vector calculus important?

Vector calculus is important because it provides a powerful tool for describing and analyzing physical phenomena in a mathematical way. It is used in various fields such as physics, engineering, and computer graphics to model and solve complex problems.

3) What are some real-life applications of vector calculus?

Some real-life applications of vector calculus include calculating electric and magnetic fields, fluid dynamics, motion of objects in space, and optimization problems in economics and engineering.

4) What are the basic concepts in vector calculus?

The basic concepts in vector calculus include vectors, vector fields, scalar and vector functions, vector operations (addition, subtraction, scalar multiplication), derivatives of vector functions, and line and surface integrals.

5) How can I improve my understanding of vector calculus?

To improve your understanding of vector calculus, it is important to practice solving problems and working through examples. You can also attend lectures, study from textbooks, and seek help from a tutor or online resources. Additionally, gaining a strong foundation in calculus and linear algebra will greatly aid in understanding vector calculus.

Similar threads

  • STEM Academic Advising
Replies
16
Views
384
Replies
13
Views
2K
Replies
36
Views
3K
  • Science and Math Textbooks
Replies
1
Views
1K
  • Science and Math Textbooks
Replies
26
Views
3K
  • Science and Math Textbooks
Replies
11
Views
2K
  • STEM Academic Advising
Replies
10
Views
891
  • Calculus
Replies
3
Views
2K
Back
Top