How can I specify that $a>0$ and $f$ is defined on $(0,1)$ for a toy function $f(x|a)=ax$ in Maxima CAS?
f(x):=a*x;
That is $f:(0,1)\to(0,а)$
How can I specify that $a>0$ and $f$ is defined on $(0,1)$ for a toy function $f(x|a)=ax$ in Maxima CAS?
f(x):=a*x;
That is $f:(0,1)\to(0,а)$
Copyright © 2021 JogjaFile Inc.
I found
assume()function in Maxima's documentation. It assumes domains (or ranges) of variables. We can also usefacts()to view current assumptions. For the toy example above, we declare: