I can't understand this differentiation ( Chain Rule, solving the variational problem)

171 Views Asked by At

I circled the step that i have no idea how was done, please help me guys: enter image description here

What kind of chain rule is that? I know the chain rule when we have a fucntion of multiple variables and a curve, if the function is evaluated at the curve then I know how to calculate the chain rule ( By doing the dot product of the gradient of the function evaluated at the curve by the derivative of the curve ) In this case I do not see how that apllies at all, I can't even see how I would calculate the gradiant of this function since its coordinates are functions themselves ! I am lost guys, clarify this to me please.

2

There are 2 best solutions below

12
On BEST ANSWER

Let $x_1=y+\alpha \eta$ and $x_2=y'+\alpha \eta'$. Then, we have

$$\begin{align} \frac{\partial f(y+\alpha \eta, y'+\alpha \eta',x)}{\partial \alpha}&=\frac{\partial f(x_1,x_2,x)}{\partial \alpha}\\\\ &=\frac{\partial f(x_1,x_2,x)}{\partial x_1}\frac{\partial x_1}{\partial \alpha}+\frac{\partial f(x_x,x_2,x)}{\partial x_2}\frac{\partial x_2}{\partial \alpha}+\frac{\partial f(x_1,x_2,x)}{\partial x}\frac{\partial x}{\partial \alpha}\\\\ &=\eta \,\frac{\partial f(x_1,x_2,x)}{\partial x_1}+\eta'\,\frac{\partial f(x_1,x_2,x)}{\partial x_2}\\\\ &=\eta \,\frac{\partial f(y+\alpha \eta,y'+\alpha \eta',x)}{\partial y}+\eta'\,\frac{\partial f(y+\alpha \eta,y'+\alpha \eta',x)}{\partial y'} \end{align}$$

1
On

It is indeed the chain rule. $\partial f / \partial y$ on the right hand side meaning "the derivative w.r.t. the first variable", ...

For a function with only a one-dimensional argument, the chain rule can be stated as $$\frac{\partial f(x(t))}{\partial t} = x'(t)\cdot \frac{\partial f}{\partial x}(x(t)),$$ where $x'(t)$ is the inner derivative, and $\frac{\partial f}{\partial x}(x(t))$ is the outer derivative evaluated at $x(t)$. The outer derviative is computed without the knowledge of $x(t)$.

Example: $f(z) = z^2, x(t) = \sin(t)$. Then $$\frac{\partial f(x(t))}{\partial t} = \underbrace{(\sin(t))'}_{x(t)'}\cdot \underbrace{(2z)}_{f'}\underbrace{(z = \sin(t))}_{(*)},$$ where $(*)$ is simply filling in the argument function $x(t)$ into the derivative of $f$, which was taken without knowledge of $x(t)$.

In 2 dimensions, we have $$\frac{\partial f(x(t), y(t))}{\partial t} = x'(t)\cdot \frac{\partial f}{\partial x}(x(t), y(t)) + y'(t)\cdot \frac{\partial f}{\partial y}(x(t), y(t)),$$ where $\frac{\partial f}{\partial x}(x(t), y(t))$ again means: We evaluate the derivative of $f$ with respect to its first variable/'slot', and then insert the specific arguments (here: $(x(t), y(t))$). This scheme is easily generalized to higher dimensions.