psholtz
- 133
- 0
Homework Statement
I'm working through the classic treatise on ODEs by Ince. I know that this is a somewhat dated text, but (imho) there are some real "gems" on the subject of ODEs here, well worthy of careful study.
I'm looking at Problem #7 at the end of Chapter 1. In it, we are given a function z(x,y):
<br /> z(x,y) = 3xy - y^2 + (y^2-2x)^{3/2}<br />
and we are asked to show two things. First, that:
<br /> \frac{\partial^2 z}{\partial x \partial y} = \frac{\partial^2 z}{\partial y \partial x}<br />
and second that:
<br /> \frac{\partial^2 z}{\partial x^2} \cdot \frac{\partial^2 z}{\partial y^2} = \left( \frac{\partial^2z}{\partial x \partial y} \right)^2<br />
The first one is a no-brainer. It's the second one that I'm having trouble with..
Homework Equations
All are given above.
The Attempt at a Solution
Differentiating the above expression, we have:
<br /> z_x = 3y + \left( \frac{3}{2} \right)\left(y^2-2x \right)^{1/2}(-2)<br />
<br /> z_x = 3y - 3\left(y^2- 2x\right)^{1/2}<br />
and differentiating again:
z_{xy} = 3 - 3\left(\frac{1}{2}\right) \left(y^2-2x\right) ^ {-1/2}(2y)
z_{xy} = 3 - \frac{3y}{\sqrt{y^2-2x}}
Now differentiating with respect to y first, we have:
z_y = 3x - 2y + \left(\frac{3}{2}\right) \left(y^2-2x\right)^{1/2}(2y)
z_y = 3x - 2y + 3y\sqrt{y^2-2x}
and differentiating again:
z_{yx} = 3 +3y\left(\frac{1}{2}\right)\left(y^2-2x\right)^{-1/2}(-2)
z_{yx} = 3 - \frac{3y}{\sqrt{y^2-2x}}
So yes, we have z_{yx} = z_{xy} as expected.
Now, moving on to the second part of this problem, we square this expression:
\left(\frac{\partial^2z}{\partial x \partial y}\right)^2 = 9 + \frac{9y^2}{y^2-2x} - \frac{18y}{\sqrt{y^2-2x}}
\left(\frac{\partial^2z}{\partial x \partial y}\right)^2 = \frac{18(y^2-x)}{y^2-2x} - \frac{18y}{\sqrt{y^2-2x}}
Now, going back to the expression for z_x:
z_x = 3y - 3\sqrt{y^2-2x}
and differentiating again with respect to x, we have:
z_{xx} = -3\left(\frac{1}{2}\right)\left(y^2-2x\right)^{-1/2}(-2)
z_{xx} = \frac{3}{\sqrt{y^2-2x}}
And going back to the expression for z_y:
z_y = 3x - 2y + 3y\sqrt{y^2-2x}
and differentiating with respect to y:
z_{yy} = -2 + 3\left[\sqrt{y^2-2x} + y \left(\frac{1}{2}\right)\left(y^2-2x\right)^{-1/2}(2y)\right]
z_{yy} = - 2 + 3 \left[\sqrt{y^2-2x} + \frac{y^2}{\sqrt{y^2-2x}}\right]
z_{yy} = - 2 + 3 \left[\frac{2(y^2-x)}{\sqrt{y^2-2x}}\right]
z_{yy} = - 2 + \frac{6(y^2-x)}{\sqrt{y^2-2x}}
Multiplying these together, we get:
z_{xx} \cdot z_{yy} = \frac{18(y^2-x)}{y^2-2x}- \frac{6}{\sqrt{y^2-2x}}
Comparing this to what we derived above for \left(z_{xy}\right)^2, we see it's close, but not exact. The first term is correct, but the second term is off by a factor of 3y.
What am I doing wrong?
Or is there a typo in Ince?