Questions tagged [partial-derivative]

For questions regarding partial derivatives. The partial derivative of a function of several variables is the derivative of the function with respect to one of those variables, with all others held constant.

The partial derivative of a function of several variables is the derivative of the function with respect to one of the variables, with the others held constant. The partial derivative, like the ordinary derivative, describes the rate of change of a function in a particular direction.

If $f = f(a_1, a_2, \dots, a_n)$ is a function of $n$ variables, then the partial derivative of $f$ with respect to the variable $a_i$ can be written as a limit:

$$\frac{\partial f}{\partial a_i} = \lim_{h \to 0} \frac{f(a_1, \dots, a_i + h, \dots, a_n) - f(a_1, \dots, a_i, \dots, a_n)}{h}.$$

Alternatively, this quantity can be denoted as $f_{a_i}$.

If the function has continuous partial second derivatives, then:

$$\frac{\partial}{\partial x_i}\left(\frac{\partial}{\partial x_j}\right)=\frac{\partial}{\partial x_j}\left(\frac{\partial}{\partial x_i}\right)$$

a result known as Schwarz's Theorem.

6917 questions
1
vote
0 answers

Show the statement is correct.

I found a question: Suppose that $z= e^{x+y}$. Show that the result of differentiation $z$, $m$ times with respect to $x$ and $n$ times with respect to $y$ is $$\frac{\partial^{m+n}z}{\partial x^m\,\partial y^n} = e^{x+y}$$ When I think about it,…
Math
  • 437
  • 4
  • 10
1
vote
1 answer

Sign of third order derivative

We have a concave function $f(x,y)$, i.e. the Hessian matrix has non-positive elements. Can we show $\dfrac{\partial^3f}{\partial x \, \partial y^2} \le 0$?
Mostafa
  • 11
1
vote
1 answer

Partial Derivative Chain rule proof

Show that if $f$ is a function of the variables x and y (independent variables), and the latter are changed to independent variables u and v where $u = e^{y/x}$ and $x = x^2+y^2$, then $x\frac{\partial{f}}{\partial{x}} +…
user2250537
  • 1,101
1
vote
0 answers

Manipulating partials in solution of equation

I'm given the following equation: $$ \frac{\partial \dot u}{\partial x} + \frac{\partial w}{\partial x}\frac{\partial \dot w}{\partial x} = 0 $$ where $u=u(x,t)$, $w=w(x,t)$ and $\dot{()} = \frac{\partial ()}{\partial t}$. My goal is to solve for…
1
vote
3 answers

How to find the maximum of this function $\frac{x}{x-y}$?

I have a function $$f(x,y)=\dfrac{x}{x-y},\;\text{for all}\;x\neq y$$ Where $f(x,y)$ is maximum? I have calculated $\partial f/\partial x = -y/(x-y)^2$ and $\partial f/\partial y = 1/(x-y)^2$ but what to do next?
drzbir
  • 496
  • 4
  • 19
1
vote
1 answer

calculating partial derivatives at the origin when they are not defined.

So I am asked to find partial derivatives of the function $f(x,y) = (xy)^{\frac{1}{3}}$ at $(0,0)$. This is a past paper exam question. I obtain $$\frac{\partial f}{\partial x} = \frac{y}{3(xy)^{2/3}}$$. This is undefined at the origin? Yet in the…
user214138
1
vote
1 answer

Partial derivative $f(x,y)=x^2 \sin y$

I was studying when I found this partial derivative: $$z=f(x,y)=x^2 \sin y$$ $$ fy= \lim\limits_{\Delta \to 0}\frac{\Delta yz}{\Delta y} = \lim\limits_{\Delta \to 0}\frac{x^2 \sin(y+\Delta y) - x^2 \sin y}{\Delta y} = \lim\limits_{\Delta \to…
1
vote
1 answer

Derivative of two independent varibles.

Consider three quantities related by: $$y=f(t), x=g(t)$$ Then what is $(\frac{\partial y}{\partial x})_t$? Is it simply that we cannot perform such an operation or is it $0$ or $\infty$? If it is one of the latter cases then what is:…
1
vote
0 answers

Partial derivative multiplied with delta (difference)

once again I am stuck with a derivation in thermodynamics. We start from $dS=\frac{dU}{T}+\frac{p \cdot dV}{T}$ and a result in the lecture notes is: $\Delta(\frac{1}{T}) = \frac{\partial^2S}{\partial^2U}\cdot\Delta U + \frac{\partial^2S}{\partial…
1
vote
1 answer

Partial differentiation of $r^2 = x^2 + y^2 +z^2$

If $U=f(r)$ where $r^2 = x^2 + y^2 +z^2$ , what is $U_{xx} + U_{yy} + U_{zz}=$ The result must be in terms of $r, f(r)$ and its derivatives only I have obtained $f_x(r)=f^{'}(r)\frac{\partial r}{\partial x}= f^{'}(r) \frac{x}{r}$ I'm confused with…
mahes
  • 469
1
vote
2 answers

Find relative maxima/minima/saddle points

I need to find the relative maxima/minima/saddle points of $f(x,y)=x^3-12x+y^3-27y+5$ I found $$ f_x=3x^2-12 \\ f_y=3y^2-27\\ f_{xx}=6x \\ f_{yy}=6y\\ f_{xy}=0 $$ Considering the Hessian matrix, $$ detHf = 36xy = D\\ trHf = 6(x+y) $$ The 4 critical…
S.Dan
  • 1,115
1
vote
1 answer

Second order partial differentials problem

I've been given the following: $$ \begin{cases} z = \ln(x + y^2)\\ x = t + 1/s\\ y = t \end{cases} $$ and have been asked to find $\frac{\partial z}{\partial t}$, $\frac{\partial z}{\partial s}$, and $\frac{\partial^2z}{\partial s \partial t}$. I've…
1
vote
2 answers

Finding the partial deritative of $ f(x,y) = \sqrt[3]{x^3+y^3}$

how do I find the partial deritative of $$ f(x,y) = \sqrt[3]{x^3+y^3}$$ If I use normal rules I get $f_x = x^2(x^3+y^3)^{-\frac{2}{3}}$ so $f_x(0,0) = 0$ But if I calculate by definition I get $$f_x(0,0) = \lim_{h\to{0}} \frac{f(0+h,0) - f(0,0)}{h}…
1
vote
1 answer

partial derivative with absolute value

I have a simple question about the partial derivative of a function including an absolute value. I am reading a book and there is a summation: $$ A = β\sum_\textbf{x} ||\textbf{x}||^n r(\textbf{x})$$ where $n \in \mathbb{R}_{\geq 0}$, $\beta \in…
Mauro
  • 313
1
vote
1 answer

Different ways to express partial derivatives

I have a teacher of economics who likes to use mathematical proofs all the time. Specifically in one exercise he proposed to use the partial derivative of the total expenditure of a economy with respect to the interest rate to show that it is a…