Task:
If f(x)=int(x) , find the given functional value. f(-14.321)
Solution:
The function int(x) gives the integer part of x .

It is related to the floor and ceiling functions: ⌊x⌋ and ⌈x⌉ by
int(x)={⌊x⌋⌈x⌉forx≥0forx<0.
The integer part function satisfies
int(−x)=−int(x)
Proceeding from the above f(−14.321)=[−14.321]=−15.000
Answer: -15