Mass of region between two graphshttp://calc3.askbot.com/questions/Open source question and answer forum written in Python and DjangoenCopyright Askbot, 2010-2011.Thu, 17 Jul 2014 16:34:19 -0500Directional Derivative equal to 10http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/So with # 4 on the review sheet. $$\nabla f=\langle y^{3},3xy^{2} \rangle$$ So at $(1,2)$ $\nabla f=\langle1,6 \rangle.$ So to determine if $D_{u}f$ is equal to $10$ we solve for $a$ and $b$ in the equation $$\langle1,6 \rangle \cdot \langle a,b \rangle=10$$ Here's where I feel confused. You end up with $a+6b=10.$ Now $a=4, b=1$ is an obvious solution to this equation. However, does $\textbf{u}$ have to be a unit vector to correctly answer this question? This leads to two other questions. If it does need to be unit vector do we find it by normalizing the vector $\langle4,1 \rangle$? If we do normalize this vector the components of the unit vector we construct will not solve the equation $a+6b=10.$ But I feel that since it will still have the same direction this may not matter. As an alternative method we could solve the system of equations below? $$ a+6b=10$$ $$a^{2}+b^{2}=1$$ I haven't bothered trying to solve that system yet because I'm not sure it's necessary. Thoughts?Thu, 17 Jul 2014 15:43:34 -0500http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/Answer by Christina for Directional Derivative equal to 10 http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=133#post-id-133I think Justin and Tiffany did a nice job addressing this one previously. You don't really need to set up systems to solve. If we know the gradient vector points toward the direction with the greatest change, that is all you need. If $$\nabla f=\langle y^{3},3xy^{2} \rangle$$ Then $$\nabla f(2,1)=\langle 1,6 \rangle$$ And we know this is the direction of the greatest change. So, what is the change? The magnitude of the gradient. $$|| \ \nabla f \ || = \sqrt{1^2 + 6^2} = \sqrt{37} $$ Now all you have to do is compare this to 10 and see that it will never be that high. I hope this helps, I am not as elegant as Justin at explaining....Thu, 17 Jul 2014 16:25:32 -0500http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=133#post-id-133Answer by Justin for Directional Derivative equal to 10 http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=132#post-id-132Take a look at [my answer to a previous question](http://calc3.askbot.com/question/103/exam-2-review-sheet/?answer=105#post-id-105). **Update/Comment:** Thanks Christina! I think you explain things wonderfully!Thu, 17 Jul 2014 16:23:23 -0500http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=132#post-id-132Answer by Dylan for Directional Derivative equal to 10 http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=134#post-id-134I think this is the problem with using that vector: The question is asking if there is a direction where the magnitude of the rate of change is 10, and the magnitude of the rate of change is given by the magnitude of the gradient vector. If we dot the grad vector with a non-unit vector, the dot product isn't equal to the magnitude of the rate of change, so sadly non-unit vectors don't work. In general, the directional derivative needs a unit vector for this reason. If we normalize the vector, then it no longer makes the dot product equal to 10, so unfortunately we can't do that either. I think the only way to find it methodically is the solve the system of equations. **Edit in response to Christina:** Ah, so if we had been asked to "find the direction where the rate of change is 10" we'd have to solve the system, but because we were only asked *if* it ever had that value, we can just see if it ever goes that high. I completely forgot that day in class.Thu, 17 Jul 2014 16:34:19 -0500http://calc3.askbot.com/question/130/directional-derivative-equal-to-10/?answer=134#post-id-134