Tell me more ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.

curvature equation for implicit functions, level sets is usually given in two forms: One is the divergence of gradient of the unit normal:

$\kappa = \bigtriangledown \cdot \frac{\bigtriangledown \phi}{|\bigtriangledown \phi|}$

The other is

$\kappa = \frac{\phi_{xx}\phi_y^2 - 2\phi_x\phi_y\phi_{xy} + \phi_{yy}\phi_x^2}{(\phi_x^2+\phi_y^2)^{3/2}}$

How do we derive the second equation from the first?

share|improve this question

1 Answer

up vote 1 down vote accepted

Just expand in coordinates: $$\begin{align}\kappa &= \nabla \cdot \frac{\nabla \phi}{|\nabla \phi|} = \nabla \cdot \frac{(\phi_x,\phi_y)}{\sqrt{\phi_x^2+\phi_y^2}}\\ &=\left(\partial_x \frac{\phi_x}{\sqrt{\phi_x^2+\phi_y^2}}\right)+ \left(\partial_y \frac{\phi_y}{\sqrt{\phi_x^2+\phi_y^2}}\right) \\ &= \frac{\phi_{xx}}{\sqrt{\phi_x^2+\phi_y^2}} - \frac{\phi_x (\phi_x\phi_{xx}+\phi_y\phi_{xy})} {(\phi_x^2+\phi_y^2)^{3/2}} + \frac{\phi_{yy}}{\sqrt{\phi_x^2+\phi_y^2}} - \frac{\phi_y(\phi_x\phi_{xy}+\phi_y\phi_{yy})} {(\phi_x^2+\phi_y^2)^{3/2}} \\ &= \frac{\phi_{xx}(\phi_x^2+\phi_y^2) - \phi_x (\phi_x\phi_{xx}+\phi_y\phi_{xy}) +\phi_{yy}(\phi_x^2+\phi_y^2) - \phi_y(\phi_x\phi_{xy}+\phi_y\phi_{yy})}{(\phi_x^2+\phi_y^2)^{3/2}}\\ &= \frac{\phi_{xx}\phi_y^2 - 2\phi_x\phi_y\phi_{xy} + \phi_{yy}\phi_x^2}{(\phi_x^2+\phi_y^2)^{3/2}} \end{align}$$

share|improve this answer
$\triangledown \cdot$ is divergence operator I assume, is that why the result of $\partial_x(..)$ and $\partial_y(..)$ are added to eachother? – user6786 Mar 24 '11 at 15:34
@user6786: yes $\nabla \cdot (f_1(x,y), f_2(x,y))$ is a common notation for the divergence $\partial_x f_1(x,y) + \partial_y f_2(x,y)$. One thinks about $\nabla$ as denoting the "vector" $(\partial_x , \partial_y)$ and then taking the inner product. – Fabian Mar 24 '11 at 15:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.