| 1 | initial version |
sage: theta = function('theta')(x)
sage: y = sin(theta)
sage: y.diff(x)
cos(theta(x))*D[0](theta)(x)
| 2 | No.2 Revision |
sage: theta = function('theta')(x)
sage: y = sin(theta)
sage: y.diff(x)
cos(theta(x))*D[0](theta)(x)
D is the differential operator, see https://en.wikipedia.org/wiki/Differential_operator. The online Sage docs are a bit behind the newest development version, so I cannot give you a link to Sage docs at the moment.
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.