How to get the second derivative of this function ?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
7 replies · 4K views
AbuYusufEg
Messages
19
Reaction score
0
Let a function [tex]v[/tex] in one variable, say [tex]u[/tex]
[tex]u[/tex] is a function also, but in two variables, say [tex]x[/tex] & [tex]y[/tex]

for the first derivative of [tex]v[/tex], i did the following:
[tex]\frac{\partial v}{\partial x} = \frac{d v}{d u} . \frac{\partial u}{\partial x}[/tex]

And the resutlt is:
[tex]\frac{\partial v}{\partial x} = cos(u) . u_x[/tex]

Note: [tex]u_x[/tex] is so hard to get, may be impossible without computer.

But, if i want the second derivative of [tex]v[/tex], How to ?

[tex]\frac{\partial^2 v}{\partial x^2} = ?[/tex]

i think that the way for getting it is Differentiating the result, means differentiating: [tex]cos(u) . u_x[/tex]
But how to also ?
 
Last edited:
Physics news on Phys.org
i'll give a try !, tell me if any thing wrong ..
[tex]\frac{\partial^2 v}{\partial x^2} = -sin(u).u_x + cos(u).u_{xx}[/tex]
is that correct ? and where is the [tex](u_x)^2[/tex] you talk about ? and why should it be here ?
 
[itex]v_x= cos(u)u_x[/itex]
use the product rule:

[itex]v_{xx}= (cos(u))_x u_x+ cos(u) u_{xx}[/itex]
And [itex](cos(u))_x= -sin(u) u_x[/itex] by the chain rule. Because of the "[itex]u_x[/itex]" in that,
[tex](cos(u))_x u_x= (-sin(u) u_x)u_x= -sin(u) u_x^2[/tex].
 
tiny-tim said:
ok … you have to use the product rule on cos(u).ux

so it's cos(u).(∂/∂x(ux)) + (∂/∂x(cos(u)).ux

= cos(u).uxx + … ? :smile:

HallsofIvy said:
[itex]v_x= cos(u)u_x[/itex]
use the product rule:

[itex]v_{xx}= (cos(u))_x u_x+ cos(u) u_{xx}[/itex]
And [itex](cos(u))_x= -sin(u) u_x[/itex] by the chain rule. Because of the "[itex]u_x[/itex]" in that,
[tex](cos(u))_x u_x= (-sin(u) u_x)u_x= -sin(u) u_x^2[/tex].

it's clear now !, good.