0

When I take the curl of above vector I get $\partial N/\partial x$ - $\partial M/\partial y$ . But if I do take the curl in 3×3 matrix then something different comes back (As I'm in mobile I'm unable to write this in mathjax). Then what is real curl of the vector? Where is the mistake I have made.

  • Isn't curl only defined in $\mathbb{R}^3$? You have a two dimensional vector there. – MSDG Aug 11 '18 at 10:29
  • @Sobi a $\mathbb{R}^2$ vector field which can have curl or can rotate as if the vector field had been $-y\hat{i} +x\hat{j} $ then curl would be 2$\hat{k}$ – user187604 Aug 11 '18 at 10:33
  • I see. In that case, it would be good if you could write how you obtained the curl to be $\partial N / \partial x - \partial M / \partial y$. – MSDG Aug 11 '18 at 10:36
  • @Sobi if we use 2×2 matrix of curl then we'll get it. – user187604 Aug 11 '18 at 10:37
  • What kind of a $2 \times 2$ matrix? – MSDG Aug 11 '18 at 10:38
  • @Sobi see https://www.google.co.in/url?sa=t&source=web&rct=j&url=http://mathonline.wikidot.com/the-divergence-and-curl-of-a-vector-field-in-two-dimensions&ved=2ahUKEwiI2-qx5-TcAhUKto8KHTm5BKkQFjAAegQIARAB&usg=AOvVaw1HjAX5LHeesAOxg8YsLX3Z – user187604 Aug 11 '18 at 10:39

2 Answers2

1

Remember that curl of a vector field in $\mathbb{R}^3$ is a vector in $\mathbb{R}^3$ and not a scalar. Now, if we assume both M and N are not functions of $z$ but only of $x$ and $y$ we get your solution but there is a $\hat{k}$ missing. If you evaluate the curl matrix (3x3) taking that your z-component of the vector field is zero and that both M and N are not functions of $z$ but only of $x$ and $y$ then you should get back the same, as rest of the terms go to zero!

Multigrid
  • 137
1

Using the definition from the link that you presented in the comments, one gets $$ \text{curl}(F) = \left(\partial_x N - \partial_y M\right) \hat{k}. $$ Here it is assumed that $M=M(x,y)$ and $N=N(x,y)$ are independent of $z$.

On the other hand, I'm assuming that the $3 \times 3$ matrix (or rather, determinant) you are referring to is $$ \text{curl}(F) = \begin{vmatrix} \hat i & \hat j & \hat k \\ \partial_x & \partial_y & \partial_z \\ F_i & F_j & F_k \end{vmatrix}, $$ which, for $F = M\hat i + N \hat j + 0\hat k$, becomes \begin{align} \text{curl}(F) &= \begin{vmatrix} \hat i & \hat j & \hat k \\ \partial_x & \partial_y & \partial_z \\ M & N & 0 \end{vmatrix} = (0 - \partial_z N)\hat i - (0-\partial_z M)\hat j + (\partial_x N -\partial_y M)\hat k = (\partial_x N -\partial_y M)\hat k, \end{align} where $\partial_z M = \partial_z N = 0$ since $M$ and $N$ were assumed to be independent of $z$.

MSDG
  • 7,143