Check ?

If f(x) = int(x), find the given functional value.


35. f(-14.321)

= 14

nope

though it does depend on how int is defined

if it just truncates the fraction off, you get -14

if it is defined as the greatest integer less than or equal, you get -15.

what you have is int( |-14.321| )

So it's -14?

I'd expect so.

To find the functional value f(-14.321) for the function f(x) = int(x), where int(x) represents the greatest integer less than or equal to x, you need to find the greatest integer that is less than or equal to -14.321.

To do this, you can use the integer floor function, which rounds down a number to the nearest integer. In this case, you need to round down -14.321 to the nearest integer.

The greatest integer less than or equal to -14.321 is -15. Therefore, f(-14.321) = -15.

So, the given functional value for f(-14.321) is -15.