Page 1 of 1

Differentiation in Mathematica question

Posted: August 31st, 2007, 11:47 am
by mohamedb
Hi All,A hopefully simple Mathematica question.I have y = f(t) , x = g(t).dy/dx = f' / g'How can I get Mathematica to derive this by itself? RgdsBM

Differentiation in Mathematica question

Posted: August 31st, 2007, 1:21 pm
by blondie
Clear[y, f, t, x, g];y[t_] := f[t];t[x_] := InverseFunction[g][x];D[y[t[x]], {x, 1}] /. {x -> g[t]}

Differentiation in Mathematica question

Posted: September 3rd, 2007, 2:46 pm
by mohamedb
clever - thxBM