Why does the following not result in 'True'?
var('x')
f=function('f',nargs=1)
f(x)==f(x)
or, speaking differently, can I define formal functions such that the preceding will result in 'True'?
1 | initial version |
Why does the following not result in 'True'?
var('x')
f=function('f',nargs=1)
f(x)==f(x)
or, speaking differently, can I define formal functions such that the preceding will result in 'True'?