Math error with a big value

Hi! I get a wrong result with from math with a big number: (

Does this have something to do with data types or what?

Same happens when I use different operators (math4 adds -1):

CHOPs use 32-bit floats internally, which run out of precision around ~16M to perfectly represent integers. After that it’s going to be approximations.

I see. Thank you!