I have a path V[t_]:={3t^2,2,6t}, and I define F[t_]:=V[t]/Norm[V[t]]. I simply want the derivative of F, which is a 3-vector function of the variable t. Somehow I did not manage to find any (simple?) way to calculate it.. Ideas?
1 Answer
$\begingroup$ $\endgroup$
1 You don't specified what your actual problem is and what exactly you have tried. Isn't this simple enough?
v[t_] := {3 t^2, 2, 6 t}; f[t_] := v[t]/Sqrt[v[t].v[t]] D[f[t], t] - $\begingroup$ Yes, that works. Somehow It didn't work when using
Norm[]. Thanks! (In my next questions, all will be specified! :) ) $\endgroup$user76568– user765682013-04-19 10:26:28 +00:00Commented Apr 19, 2013 at 10:26
V[t]/Sqrt[V[t].V[t]]instead. $\endgroup$Assumingor theAssumptionswhen you will simplify the derivative of the functionF$\endgroup$Vis actually the derivative of my original path, and I wanted to find It's normal. $\endgroup$