Partial Differentiation: Part 3
Advanced Numerical Problems on Partial Differentiation Problem 1: Laplace’s Equation Problem: Verify that \( u = x^3 - 3xy^2 \) satisfies Laplace’s equation. Show / Hide Solution \[ u_x = 3x^2 - 3y^2, \quad u_y = -6xy \] \[ u_{xx} = 6x, \quad u_{yy} = -6x \] \[ u_{xx} + u_{yy} = 6x - 6x = 0 \] Hence verified. Problem 2: Total Differential Problem: If \( z = e^{xy}\sin(x+y) \), find total differential \( dz \). Show / Hide Solution \[ dz = z_x dx + z_y dy \] \[ z_x = e^{xy}[y\sin(x+y)+\cos(x+y)] \] \[ z_y = e^{xy}[x\sin(x+y)+\cos(x+y)] \] \[ dz = e^{xy}[y\sin(x+y)+\cos(x+y)]dx \] \[ + e^{xy}[x\sin(x+y)+\cos(x+y)]dy \] Problem 3: Directional Derivative Problem: Find directional derivative of \( \phi=x^2y+yz^3 \) at (1,-1,1) in direction \(2\mathbf{i}-\mathbf{j}+2\mathbf{k}\). Show / Hide Solution \[ \nabla \phi = (2xy)\mathbf{i} + (x^2+z^3)\mathbf{j} + (3yz^2)\mathbf{k} \] At (1,-1,1): \[ \nabla \phi = (-2)\mathbf{i} + 2\mathbf{j} - 3\...