Calculate the directional derivative of f(x,y) = cos^-1 (xy) in the direction v = i - 2j, at the point P = (0.5, 0.5)
What am I doing wrong here?
f(x,y) = cos^-1 (xy)
First computing the gradient at P = (0.5, 0.5)
gradF = <d/dx f(x,y) , d/dy f(x,y)> = < -y / sqrt(1 + x^2*y^2) , -x / sqrt(1 + x^2 * y^2) >
gradF_P = gradF_(0.5, 0.5) = < -0.5 / sqrt(1 + (0.5)^2*(0.5)^2) , -0.5 / sqrt(1 + (0.5)^2*(0.5)^2)> = <-2/sqrt(17) , -2/sqrt(17) >
DvF(P) = GradF_P * v = <-2/sqrt(17) , -2/sqrt(17) > * <1, -2> = -2/sqrt(17) + 4/sqrt(17) > = 2sqrt(17) / 17
which is NOT correct.
What am I doing wrong, here?
What am I doing wrong here?
f(x,y) = cos^-1 (xy)
First computing the gradient at P = (0.5, 0.5)
gradF = <d/dx f(x,y) , d/dy f(x,y)> = < -y / sqrt(1 + x^2*y^2) , -x / sqrt(1 + x^2 * y^2) >
gradF_P = gradF_(0.5, 0.5) = < -0.5 / sqrt(1 + (0.5)^2*(0.5)^2) , -0.5 / sqrt(1 + (0.5)^2*(0.5)^2)> = <-2/sqrt(17) , -2/sqrt(17) >
DvF(P) = GradF_P * v = <-2/sqrt(17) , -2/sqrt(17) > * <1, -2> = -2/sqrt(17) + 4/sqrt(17) > = 2sqrt(17) / 17
which is NOT correct.
What am I doing wrong, here?