Partial Derivatives Homework: Find Sum of Second Partials

Click For Summary
SUMMARY

The discussion focuses on calculating the sum of second partial derivatives of the function u = (x² + y² + z²)⁻¹/². The correct expressions for the second partial derivatives are derived as follows: ∂²u/∂x² = -(x² + y² + z²)⁻³/² + 3x²(x² + y² + z²)⁻⁵/², ∂²u/∂y² = -(x² + y² + z²)⁻³/² + 3y²(x² + y² + z²)⁻⁵/², and ∂²u/∂z² = -(x² + y² + z²)⁻³/² + 3z²(x² + y² + z²)⁻⁵/². The sum of these derivatives simplifies to a more manageable form, which can be computed using MATLAB.

PREREQUISITES
  • Understanding of partial derivatives
  • Familiarity with multivariable calculus
  • Basic knowledge of MATLAB syntax
  • Concept of symbolic differentiation
NEXT STEPS
  • Learn MATLAB symbolic differentiation techniques
  • Study the application of the Laplacian operator in multivariable calculus
  • Explore simplification techniques for partial derivatives
  • Review the properties of second derivatives in vector calculus
USEFUL FOR

Students and professionals in mathematics, engineering, and physics who are working with multivariable functions and require a solid understanding of partial derivatives and their applications.

wilcofan3
Messages
27
Reaction score
0

Homework Statement



Let [tex]u= (x^2 + y^2 + z^2)^\frac {-1} {2}[/tex]


Find [tex]\frac {\partial^2 u} {\partial x^2} + \frac {\partial^2 u} {\partial y^2} + \frac {\partial^2 u} {\partial z^2}[/tex]

Homework Equations


The Attempt at a Solution



[tex]\frac {\partial^2 u} {\partial x^2} = -(x^2 + y^2 +z^2)^\frac {-3} {2} + 3x^2(x^2 + y^2 + z^2)^\frac {-5} {2}[/tex]

[tex]\frac {\partial^2 u} {\partial y^2} = -(x^2 + y^2 +z^2)^\frac {-3} {2} + 3y^2(x^2 + y^2 + z^2)^\frac {-5} {2}[/tex]

[tex]\frac {\partial^2 u} {\partial z^2} = -(x^2 + y^2 +z^2)^\frac {-3} {2} + 3z^2(x^2 + y^2 + z^2)^\frac {-5} {2}[/tex]

So I think all the partials are right, but I feel like I'm getting a crazy answer when I add them together.

[tex]3x^2 + 3y^2 + 3z^2(x^2 + y^2 + z^2)^\frac {-5} {2} -3(x^2 + y^2 + z^2)^\frac {-3} {2}[/tex]

Is this right?
 
Physics news on Phys.org
Why do you think that's crazy? It looks correct to me. But you can express the answer in a much simpler form.
 
here's the MATLAB quick code for the first step - finding d^2/dx^2:

>> syms u; syms y; syms z;
>> u = 1/sqrt(x^2+y^2+z^2)

u =

1/(x^2+y^2+z^2)^(1/2)


>> diff(u,x)

ans =

-1/(x^2+y^2+z^2)^(3/2)*x


>> diff(ans,x)

ans =

3/(x^2+y^2+z^2)^(5/2)*x^2-1/(x^2+y^2+z^2)^(3/2)
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
2K
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
4
Views
1K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K