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)