| 1 | initial version |
Well...
sage: R=vector([3*cos(t),3*sin(t),4*t]);R
(3*cos(t), 3*sin(t), 4*t)
sage: with assuming(t,"real"): (R.diff(t).norm()^2).trig_reduce().sqrt()
5
Is that acceptable to you ?
| 2 | No.2 Revision |
Well...
sage: R=vector([3*cos(t),3*sin(t),4*t]);R
(3*cos(t), 3*sin(t), 4*t)
sage: with assuming(t,"real"): (R.diff(t).norm()^2).trig_reduce().sqrt()
5
or even :
sage: with assuming(t,"real"): R.diff(t).norm().trig_reduce()
5
Is that acceptable to you ?
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.