I am learning how to find the tangent plane at a point to a surface.
I am trying to understand why the gradient vector is always normal to the surface's level set.
Reading this post helped quite a lot, it explains:
Now defining $\nabla F = \langle\dfrac{\partial F}{\partial x}, > \dfrac{\partial F}{\partial y},\dfrac{\partial F}{\partial z}\rangle$, we see that
$$dF\big|_p (\textbf{v})= \nabla F\cdot \textbf{v}$$
This one formula packages a lot of mathematics.
Hopefully this gives you some more intuition about what the gradient does. In words, to see how much $F(\textbf{p})$ changes when you move away a little bit to $\textbf{p}+\textbf{v}$, just dot product $\nabla > F\big|_p$ with $\textbf{v}$.
Armed with this intuitive understanding of the gradient, we can see why it must be perpendicular to the level curves of $F$ quite intuitively.
If $p$ is a point of the surface $F(x,y,z) = 0$, then the tangent vectors $\textbf{v}$ to the surface must satisfy $dF\big|_p(v) = 0$, because moving in the direction of the surface should not change the value of $F$ much since the value of $F$ is constant on the surface. Translating this into a gradient statement we see that $\nabla > F\big|_p \cdot \textbf{v} = 0$ for each tangent vector to the surface.
My understanding is this: if point $P$ lies on the level curve of a surface, then if I move a tiny amount away from $P$, the rate of change should be $0$ because the value of $F$ is constant on the surface at/around that point, because that point is on a level curve. And I understand that for $dF\big|_p(v) = 0$, $cos\theta$ must equal $0$ - or the angle between $ \nabla F$ and $\textbf{v}$ must be $\frac{\pi}{2}$ or $90$ degrees. (Please correct me if this is incorrect, I'm still trying to grasp it)
However, I'm struggling to understand: what does a level curve have to do with the vectors tangent to the surface?