In order to determine that a given function f(x) is odd or even, we need to satisfy the conditions.
A function such that f(x) = f(-x) is called even function. Examples of even functions include 1 (or, in general, any constant function), IxI, cos x etc.
Let us take cosx for example.
f(x) = cosx
Now, f(-x) = cos(-x) = cosx = f(x)
=> f(x) = f(-x)
This means that even if, we put the negative of the dependent variable of a function the outcome will be the same as for the normal positive variable.
Similarly, an odd function is a function for which f(-x) = -f(x). Examples of odd functions include x, sinx, tanx etc.
Let us take sinx for example.
f(x) = sinx
f(-x) = sin(-x) = -sinx = -f(x)
=> -f(x) = f(-x).
This means that if, we take the negative of the dependent variable of a function, then the outcome will be negative of the whole function expression.
1) f(x) = 3x^3 + 2x
Now, let's check if it's an even or odd function.
Put f(-x);
f(-x) = 3(-x)^3 + 2(-x)
= -3x^3 -2x = -(3x^3 +2x)
= -f(x)
As f(-x) = -f(x), it's an odd function.
2) f(x) = IxI
= ( x, x>o)
( 0, x=0)
( -x, x<0)
Mod will always give a positive value whether you put +x or -x, hence, it's an even function ( f(x) = f(-x) ).
3) y = I3x-2I = ( 3x-2, 3x-2>0 = x>2/3)
( -(3x-2) = 2-3x, x<2/3)
( 0, x = 2/3 )
I hope it helps..