Alright, I also thought that it should be the total derivative (as I was asking at the end of my last post). Ok then let me put it this way with another example, which I think should better illustrate my problem in understanding: Let's say I have three variables: x,y,z, which are parametrized with respect to t. Let's assume that t is the ultimate independent variable, like time. x(t), y(t) and z(t) given as:
x(t) = t
y(t) = t^2
z(t) = t^2 + 4 \cdot t
now, I can write z as:
z = y + 4 \cdot x
then, partial derivative of z with respect to x and wrt y would be:
\frac{\partial z}{\partial x} = 4
\frac{\partial z}{\partial y} = 1
Now, I can also write z as:
z = x^2 + 4 \cdot x
then partial derivatives change:
\frac{\partial z}{\partial x} = 2 \cdot x + 4
\frac{\partial z}{\partial y} = 0
Now, I can also write these using the chain rule:
\frac{\partial z}{\partial x} = \frac{\partial z}{\partial t} \cdot \frac{\partial t}{\partial x}
and
\frac{\partial z}{\partial x} = \underbrace{(2\cdot t + 4)}_{\frac{\partial z}{\partial t}} \cdot 1
and similarly for partial derivative of z wrt y
\frac{\partial z}{\partial y} = \frac{\partial z}{\partial t} \cdot \frac{\partial t}{\partial y}
and
\frac{\partial z}{\partial y} = (2\cdot t + 4) \cdot \underbrace{\frac{1}{2\sqrt{y}}}_{\frac{\partial t}{\partial y}}
The partial derivatives come out differently. Am I making a mistake here? Thanks a lot.