Given a pair of functions $f(x,y,z)$ and $g(x,y,z)$.
Now make the three equations:
$$ \nabla f(x,y,z) \times \nabla g(x,y,z) = 0 $$
This gives equations for three 2D surfaces. At first inspection this seems like the intersection of all three should be a point. But playing around it seems they all intersect on a 1D curve. Why?
For example try:
$$f(x,y,z) = x^2+(y-5)^2+z^2$$ $$g(x,y,z) = (x+3)^2+y^2+(z-1)^2$$
this gives three planes which cross each other on a single line between the points $(0,5,0)$ and $(-3,0,1)$.
Is this always the case? Or in what circumstances does this happen?
Edit: Another question is, can you direct me to a book (Fluid Mechanics?) that has this equation? Also apparently it implies there is a function $h(f,g)=0$ how to find this function $h$?
I just realised the third equation can be written in terms of the first two!
$$A = \partial_x f \partial_y g - \partial_y f \partial_x g$$
$$B = \partial_y f \partial_z g - \partial_z f \partial_y g$$
$$\frac{\partial_z g}{\partial_y g}A +\frac{\partial_x g}{\partial_y g}B = \partial_y f \partial_z g - \partial_z f \partial_y g$$
So its actually only two equations.