Evaluate
Interpret the bracket as the floor function. In this notation means the greatest integer not exceeding the value, so the task is to compute a quotient and then truncate downward. The whole difficulty is deciding the integer part correctly, which requires knowing how close the quotient sits to an integer.
Collapse the numerator. , so we need
Evaluate the denominator to enough precision. With ,
Truncating to three decimals would shift the quotient by about , which is far too coarse for a floor — this is why ten or more digits are needed.
Divide.
Take the floor and confirm the margin. The fractional part is , so the floor is . The result is genuinely close to the boundary: multiplying back, , which is just under , while overshoots ✓. So is correct and is not.
Need to solve a different problem like this? Open the solver →