I want to be able to check if a function f is even, odd, or neither using Maple's symbolic math. Unfortunately I don't get a boolean return of 'true' on a function I know is even.
g:=abs(x)/x^2
evalb(g(x)=g(-x))
false
Since my function is even, that is a problem. It turns out that my expression is multiplying g by x or -x instead of inputing/composing them.
How can I get Maple to check the parity of my function?
I think I figured out what I was looking for. I needed a function that would evaluate g at a value, which I found in the documentation.