[x] is the whole part (floor) of x
{x} is the fractional (decimal) part of x
Ex:
[5,76] = 5; [12/13] = 0; [e] = 2;
{9/4}=0,25; {69/2}=0,5; {4}=0;
Are those functions defined for negative numbers and how?
[x] is the whole part (floor) of x
{x} is the fractional (decimal) part of x
Ex:
[5,76] = 5; [12/13] = 0; [e] = 2;
{9/4}=0,25; {69/2}=0,5; {4}=0;
Are those functions defined for negative numbers and how?
$[x]$ is defined as the nearest integer less than $x$.
For example,
$\{x\}$ is defined as
$$\{x\} = x - [x].$$
For example,