On Sunday, February 26, 2017 at 8:17:05 AM UTC-8, Michael Orlitzky wrote:
>
>
>   sage: f = function('f')(x)


Please consider to stop using such assignments. It propagates a confusion 
between the *function* f and the *expression* f(x). The distinction is 
significant in sage and generally brushed over in Calculus, so many users 
seem to have problems with it.

Using `fx = function('f')(x)` or `f = function('f')` (and then use `f(x)` 
explicitly) may help in driving home the difference (or at least give 
examples that people can mindlessly mimic and learn useful habits). It 
might even be worth going through the docs and fixing those accordingly.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to