Is there any difference between these 2 terms?

In summary, the two terms are different because the dot product of two vectors is not commutative. The left equation is an equation for a vector, while the right equation is an equation for a matrix.
  • #1
null void
102
1

Homework Statement


Is there any difference between these 2 terms, if yes how are they different?
[itex]\begin{align}(\nabla\cdot\nabla\vec A)\vec B &= (\nabla\vec A\cdot\nabla)\vec B\end{align}[/itex]

Homework Equations


From what i know about dot product, it is commutative, so does this property apply here?
 
Physics news on Phys.org
  • #2
In the left equation, both operators apply to A, transferring one onto B requires that some additional conditions are met. Think something like integrals by parts.
Check out Green's theorem for a very common application. https://en.wikipedia.org/wiki/Green's_identities.
Commutative dot products work for matrices,
## A \cdot B = B \cdot A ## but not so clearly for operators.
In one dimension, you have something that says ##x''y = x'y'##. There are lots of functions x and y for which this is not true, and only certain functions will satisfy this.
 
  • #3
There's nothing wrong writing it that way in your case. The thing is you can't threat ##\nabla ## as a normal vector. A lot of those properties are indeed true but you have to use the definition of grad, div and curl to prove it (and in some cases you will get the wrong thing from threating it as a vector i.e. it's a good memory rule but you can't prove anything with it).
So in your case you have to use ##\nabla A = \left( \frac{\partial A}{\partial x} , \frac{\partial A}{\partial y},\frac{\partial A}{\partial z}\right) ## and you get the same result as if you use ##\nabla = \left( \frac{\partial }{\partial x},\frac{\partial }{\partial y},\frac{\partial }{\partial z}\right) ##
 
  • #4
so for the right side, it is something like this:
[itex]
\begin{align}(\nabla\vec A\cdot\nabla)\vec B &= (\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz})\vec B\\
&= <(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_x,\\(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_y,\\(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_z,>
\end{align}
[/itex]
or it is
[itex]
\begin{align}(\nabla\vec A\cdot\nabla)\vec B &= <\frac{dA_x}{dx}\frac{dB_x}{dx},\frac{dA_y}{dy}\frac{dB_y}{dy},\frac{dA_z}{dz}\frac{dB_z}{dz}>
\end{align}
[/itex]
by the way, any idea what kind of operator can be used to align the lines without "=" character?
 
Last edited:
  • #5
I'm afraid I may be misleading you here, I suspect RUber is more knowledgeable than I am since all I studied myself is vector calculus.
Check out the last part of the article here https://en.wikipedia.org/?title=Del to see when you can treat it as a vector and when you can't. From what I can read there the identity is actually false.
But generally when you prove an identity like this you have to do exactly what you just did (which is correct btw).
 
  • Like
Likes null void
  • #6
from what i see in the wiki page on "Del", i think the right operation is this one
null void said:
[itex]
\begin{align}(\nabla\vec A\cdot\nabla)\vec B &= (\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz})\vec B\\
&= <(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_x,\\(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_y,\\(\frac{dA_x}{dx}\frac{d}{dx}+\frac{dA_y}{dy}\frac{d}{dy}+\frac{dA_z}{dz}\frac{d}{dz}) B_z,>
\end{align}
[/itex]
 
  • #7
On the reference that Incand posted above, it clearly showed that you can't just swap out which vector the del is applied to using standard rules for commutativity.
"A counterexample that relies on del's failure to commute:

32c2a3ac467633efbe3496a8cabca0c6.png

a771c99a919754e0f67e114d73978310.png
"
In your original post you have ##(\Delta A)B = ##something else. What is your goal with this problem? Do you clearly need to spell out the right hand side, or is it enough to show that the differential ##\nabla## doesn't commute like a vector?
 
  • #8
Back to the 1D example, you have a relationship like
##\frac{\partial ^2 A}{\partial x^2} B = \frac{\partial A}{\partial x} \frac{\partial A}{\partial B}##
This works fine for a counterexample in 3D too, just let ##A = (A_x(x),0,0), B = (B_x(x),0,0)##
If they are the same, then their integrals would be the same, right?
##\int_\mathbb{R} \frac{\partial ^2 A}{\partial x^2} B dx= \int_\mathbb{R} \frac{\partial A}{\partial x} \frac{\partial B}{\partial x} dx##
Integrating by parts:
##\left. \frac{\partial A}{\partial x} B\right|_{-\infty}^\infty - \int_\mathbb{R} \frac{\partial A}{\partial x} \frac{\partial B}{\partial x} dx = \int_\mathbb{R} \frac{\partial A}{\partial x} \frac{\partial B}{\partial x} dx##
Even if we assume that these vectors are zero at infinity, you still have
##- \int_\mathbb{R} \frac{\partial A}{\partial x} \frac{\partial B}{\partial x} dx = \int_\mathbb{R} \frac{\partial A}{\partial x} \frac{\partial B}{\partial x} dx##
Which looks like -a = a, implying that the whole integral must be zero for this to hold true...
In short, No. They are not the same.
 
  • Like
Likes Incand
  • #9
Sorry, I just notice there are some naming convention problem in my equations, A is a scalar, bacause [itex]\nabla[/itex] can't multiply with a scalar
[itex](\nabla A \cdot\nabla)\vec B[/itex]

Now I know that the del is not commutative, but I want to conform if this is the right way to evaluate that expression, i have typed it out before, but there is some mistake in the equation.
[itex]\begin{align}
\text{let A be a function of x,y,z} \\ \text{let} \vec B &= <{B_1, B_2, B_3}>, \text{elements in vectors B are also a function of x,y,z} \\
(\nabla A \cdot\nabla)\vec B &= (\frac{\partial A}{\partial x}\frac{\partial }{\partial x}+\frac{\partial A}{\partial y}\frac{\partial }{\partial y}+\frac{\partial A}{\partial z}\frac{\partial }{\partial z})\vec B \\ &= <{(\frac{\partial A}{\partial x}\frac{\partial B_1}{\partial x}+\frac{\partial A}{\partial y}\frac{\partial B_1}{\partial y}+\frac{\partial A}{\partial z}\frac{\partial B_1}{\partial z})},\\ {(\frac{\partial A}{\partial x}\frac{\partial B_2}{\partial x}+\frac{\partial A}{\partial y}\frac{\partial B_2}{\partial y}+\frac{\partial A}{\partial z}\frac{\partial B_2}{\partial z})}, \\{(\frac{\partial A}{\partial x}\frac{\partial B_3}{\partial x}+\frac{\partial A}{\partial y}\frac{\partial B_3}{\partial y}+\frac{\partial A}{\partial z}\frac{\partial B_3}{\partial z})}>\end{align}
[/itex]
 
Last edited:
  • #10
That seems right.
 
  • Like
Likes null void
  • #11
I think I get the things I want here, thank a bunch guys.
 

1. What is the definition of these 2 terms?

The first step in understanding the difference between two terms is to clearly define each one. Look for key words or phrases that differentiate them and make sure to use those in your definition.

2. Are these 2 terms interchangeable?

Some terms may seem similar, but have distinct meanings and should not be used interchangeably. It is important to do your research and understand the subtle differences between terms before using them.

3. How do these 2 terms relate to each other?

Understanding the relationship between two terms can help clarify any confusion about their differences. This could include understanding how one term may be a subset of the other, or how they are used together in a specific context.

4. Can you provide examples of each of these terms?

Providing examples can be a helpful way to illustrate the differences between two terms. It can also help to see the terms used in different contexts to fully understand their nuances.

5. Why is it important to know the difference between these 2 terms?

Knowing the difference between terms is crucial for effective communication and avoiding misunderstandings. In scientific fields, precise language is essential, and understanding the nuances between terms can lead to more accurate and meaningful discussions and research.

Similar threads

  • Calculus and Beyond Homework Help
Replies
9
Views
769
  • Calculus and Beyond Homework Help
Replies
13
Views
2K
  • Calculus and Beyond Homework Help
Replies
3
Views
1K
  • Advanced Physics Homework Help
Replies
3
Views
391
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
9
Views
962
  • Quantum Physics
Replies
5
Views
541
  • Calculus and Beyond Homework Help
Replies
2
Views
872
  • Calculus and Beyond Homework Help
Replies
7
Views
969
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
Back
Top