Underflow occurs when the number x is closer to 0 than any of the possible
binary representations. In most cases, the number x is then replaced by zero.
An underflow example using R code appears below:
1
2
3
4
5
print(10 ^ -200, digits = 22) # roundoff, but no underflow