Often in applied situations there are simplifications for small x.
For example $x<<1$ and $x/(1+x) \approx x$ or $(x + x^2)/c \approx x/c$.
Is there a way in Maxima to carry out these sorts of expression simplifications? If there's no way to do this sort of operation in Maxima, do other CAS programs have support for something like this?
I am assuming, you want to automatically generate the approximation and use it in other calculations. One trick I have found to be useful is
This will just keep the first order terms of $f$. You could also use expand
Noticed a typo: It should be
factor(taylor(f,x,0,1))