| New Reply |
Gradient Confusion |
Share Thread | Thread Tools |
| Mar8-12, 06:03 AM | #1 |
|
|
Gradient Confusion
Hi I am having trouble getting my head around the definition of a gradient. I know a gradient tells us the direction of steepest slope that one must follow to arrive at a maximum and I know it is defined as:
![]() However I haven't got a gutt feeling for it, I need these questions answering before I can accept it: Where is the definition derived from? Why does adding the partial derivatives tell us the direction of maximum gradient?....I know this sounds stupid but if a function has gradients of 4,5,6 (x,y,x) what does that exactly mean? and why does adding them up points in the direction of the greatest rate of increase ? Can someone explain this in simply laymens terms to me, preferably using an example... I thank you in advance guys and gals |
| Mar8-12, 07:50 AM | #2 |
|
|
If you were draw a line through point [itex](x_0, y_0, z_0)[/itex] in the direction of vector [itex]v= <v_x, v_y, v_z>[/itex] you can write the line in parametric equations as [itex]x= v_xt+ x_0[/itex], [itex]y=v_yt+ y_0[/itex], [itex]z= v_zt+ z_0[/itex]. On that line we can write the function f(x,y,z) as f(x(t),y(t), z(t)). Applying the chain rule to that, we have [itex]df/dt= (\partial f/\partial x)(dx/dt)+ (\partial f/\partial y)(dy/dt)+ (\partial f/\partial z)(dz/dt)[/itex].
We can write that as a dot product: [itex]\left<\partial f/\partial x, \partial f/\partial y, \partial f/\partial z\right>\cdot\left<dx/dt, dy/dt, dz/dt\right>[/itex]. That is why it is useful to define the gradient [itex]\nabla f= \partial f/\partial x\vec{i}+ \partial f/\partial y \vec{j}+ \partial f/\partial z\vec{k}[/itex]. |
| Mar10-12, 04:20 AM | #3 |
|
|
[itex]x= v_xt+ x_0[/itex], [itex]y=v_yt+ y_0[/itex], [itex]z= v_zt+ z_0[/itex] to arrive at: [itex]df/dt= (\partial f/\partial x)(dx/dt)+ (\partial f/\partial y)(dy/dt)+ (\partial f/\partial z)(dz/dt)[/itex] This is the part I am getting stuck on, can you break it down for me... Thanks alot |
| Mar12-12, 03:34 PM | #4 |
|
|
Gradient Confusion
I have a question on the application of the gradient vector:
say A textbook question told me to "Find the directional derivative of f(x,y,z)=xy+z^2 at (1,1,1) in the direction towards (5,-3,3)." I have attempted this problem 3 times yet my answer is not the answer in the back of the answer guide: 2/3 I found the gardient vector:<y,x,2z >; @ the point (1,1,1) => (1,1,2) I found the unit vector in the given direction: <5/√43,-3/√43,3/√43> and the dot product of the gardient and unit vector: 5/√43 - 3/√43 + 6/√43= 8/√43 8/√43 is not the correct answer in the back of the book... I know typos exist but I suspect I've done something wrong or misunderstood the question. any help? |
| Mar12-12, 04:28 PM | #5 |
|
|
Don't worry. I don't get it, either. your textbook is WRONG, no matter what it thinks about.
|
| Mar12-12, 04:53 PM | #6 |
|
|
|
| Mar12-12, 05:11 PM | #7 |
|
|
haha you completely hi-jacked my thread....
|
| Mar12-12, 06:25 PM | #8 |
|
|
|
| Mar12-12, 07:04 PM | #9 |
|
|
[tex]\frac{df}{dt}= \frac{\partial f}{\partial x}\frac{dx}{dt}+\frac{\partial f}{\partial y}\frac{dy}{dt}+\frac{\partial f}{\partial z}\frac{dz}{dt}[/tex] and variations on that: If x, y, and z are functions of u, v, and w, say, then [tex]\frac{\partial f}{\partial u}= \frac{\partial f}{\partial x}\frac{\partial x}{\partial u}+\frac{\partial f}{\partial y}\frac{\partial y}{\partial u}+\frac{\partial f}{\partial z}\frac{\partial z}{\partial t}[/tex] etc. Or if f is a function of the single variable x and x is a function of u, v, and w, [tex]\frac{\partial f}{\partial u}= \frac{df}{dx}\frac{\partial x}{\partial u}[/tex] etc. |
| Mar12-12, 10:46 PM | #10 |
|
Recognitions:
|
If you hve a simple function like f(x,y,z) = x+2y+3z, then does it make sense that the direction in which it increases fastest is perpendicuklar to the directions in which it is constant?
If so then the direction of fastest increase say at (0,0,0) is perpendicular to the plane x+2y+3z = 0. Do you know why this direction is along the vector (1,2,3)? In general any smooth function f(x,y,z) is constant along a surface f(x,y,z) = c, whose tangent plane is parallel to ∂f∂x x + ∂f/∂y y + ∂f/∂z z = 0. then the direction of greatest increase is prpendicular to that surface and hence to that plane and hence is parallel to the gradient (∂f/∂x, ∂f/∂y, ∂f/∂z). |
| Mar13-12, 08:32 AM | #11 |
|
Recognitions:
|
For intuition about the gradient, I like to think about ideas of potential energy in classical physics.
The work done by a force field on a particle - e.g. gravity on a point mass or and electric field on an electron - is the integral of the inner product of the field with the velocity vector of the particle along the curve. This is just the law work = Force x distance on a curved path. In many situations, this work represents a change in the potential energy of the particle e.g. a change in gravitational potential or electrostatic potential. The force field is just the gradient of the potential. Along a surface where the potential is constant, the force field does no work on the moving particle since the potential does not change. This means that the inner product of the force field with the velocity vector of a curve is zero if the curve lies on the constant potential surface. In other words the gradient of the potential is perpendicular to the surface. This perpendicular direction must be the direction of maximum change in potential energy since any other direction will have a component tangent to the surface that will have no effect on the change in potential. |
| Mar13-12, 12:40 PM | #12 |
|
Recognitions:
|
good illustration. e.g. you do no work against gravity unless you move something perpendicular to the surface of the earth, i.e. up or down.
|
| Mar13-12, 07:05 PM | #13 |
|
|
thanks for that. I understand that the chain rule but I don't understand the why you start adding the gradients in each direction, why not just leave the comma between them in place......? |
| Mar15-12, 11:20 AM | #14 |
|
|
OkI have identified where I am getting confused, I do not know how to derive the Multivariable Chain Rule. I am going to try and figure out how this works.
|
| Mar15-12, 04:29 PM | #15 |
|
|
|
| Apr2-12, 05:35 PM | #16 |
|
|
[itex]df/dt= (\partial f/\partial x)(dx/dt)+ (\partial f/\partial y)(dy/dt)+ (\partial f/\partial z)(dz/dt)[/itex]. After that can you explain, in a little more detail, how to get from that ^ to this : [itex]\nabla f= \partial f/\partial x\vec{i}+ \partial f/\partial y \vec{j}+ \partial f/\partial z\vec{k}[/itex].[/QUOTE] Things I am confused about: Why have you applied the dot product? Is it correct to just cancel out all the dx's, dy's and dz's, in the chain rule representation and just replace them with a unit vector? Thanks a bunch jon |
| Apr3-12, 04:21 AM | #17 |
|
|
There is no worthwhile answer to your "why" other than that it is VALID to represent the sum you understand in terms of the dot product. (Multiplying out the dot product gives you the sum back!)
Do you see that? |
| New Reply |
| Thread Tools | |
Similar Threads for: Gradient Confusion
|
||||
| Thread | Forum | Replies | ||
| Finding the gradient and maximum gradient at a point P for the surface z=2x^2+3y^2 | Calculus & Beyond Homework | 2 | ||
| What is the difference between an 'increasing gradient' and a positive gradient? | Calculus & Beyond Homework | 6 | ||
| Problem with gradient vector, gradient, and directional derivative, etc. | Calculus & Beyond Homework | 1 | ||
| gradient | Calculus & Beyond Homework | 2 | ||
| help with gradient please | General Math | 3 | ||