To find the directional derivative of the function f(x,y,z) = xy + yz + zx, we need to find the gradient vector of f at the point P(1,1,1) and then take the dot product of the gradient vector with the tangent vector of the curve at P.
First, let's find the gradient vector of f:
∇f = (∂f/∂x, ∂f/∂y, ∂f/∂z)
= (y+z, x+z, x+y)
Now, let's find the tangent vector of the curve at P(1,1,1). We can do this by taking the derivative of each component of the curve with respect to t:
r(t) = (x(t), y(t), z(t))
= (t, t^2, t^3)
dr/dt = (dx/dt, dy/dt, dz/dt)
= (1, 2t, 3t^2)
At P(1,1,1), t = 1, so the tangent vector at P is:
dr/dt = (1, 2(1), 3(1)^2)
= (1, 2, 3)
Finally, we can find the directional derivative by taking the dot product of the gradient vector and the tangent vector:
Directional derivative = ∇f · dr/dt
= (y+z, x+z, x+y) · (1, 2, 3)
= (1+1, 1+1, 1+2)
= (2, 2, 3)
Therefore, the directional derivative of f = xy + yz + zx along the tangent to the curve at P(1,1,1) is (2, 2, 3).