| 1 | initial version |
Like this:
sage: f(t,r) = function('f')(t, r)
Then f stands for the function (technically a callable symbolic expression):
sage: f
(t, r) |--> f(t, r)
and f(t,r) stands for the symbolic expression expressing f acting on (t,r):
sage: diff(r^3*f(t,r), r)
r^3*diff(f(t, r), r) + 3*r^2*f(t, r)
| 2 | No.2 Revision |
Like this:
sage: f(t,r) = function('f')(t, r)
Then f stands for the function (technically a callable symbolic expression):expression):
sage: f
(t, r) |--> f(t, r)
and f(t,r) stands for the symbolic expression expressing f acting on (t,r):
sage: diff(r^3*f(t,r), r)
r^3*diff(f(t, r), r) + 3*r^2*f(t, r)
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.