even or odd function calculator

Calculator for determining whether a function is an even function and an odd function.
  • is_odd_or_even_function(`exp(x)+exp(-x)`) , returns 0 because the function is an even function.
  • is_odd_or_even_function(`exp(x)-exp(-x)`) , returns 1 because the function is odd.
See also