I want to define an abstract function.
For example,$a=a[x]$, whose expression is unknown. It can be used for calculation and deduction later. Assume that there are sufficient conditions, so I can get the specific expression of $a=a[x]$ finally.
My question is that which Code is needed to build $a=a[x]$?
a = a[x]in Mathematica; evaluating it would give infinite recursion. – m_goldberg Jul 15 '17 at 07:10a=a[x], check this post. – xzczd Jul 15 '17 at 08:17a[x]and it is a function. For example, if you want to know its derivative, takeD[a[x],x]and you get a representation of the derivative ofa[x]with respect tox. On the other hand, if you asked forD[a[x],y], the derivative ofa[x]with respect toy, then you get 0, as you might expect. – bill s Jul 15 '17 at 12:46