51% + 50% = ?

bachatero@lemmy.world to Mildly Infuriating@lemmy.world – -6 points –
4

rounding half up

round(49.5) + round(50.5)
50 + 51

as opposed to banker's rounding / rounding half to even:

round(49.5) + round(50.5)
50 + 50

Yeah fintech team rounded correctly and ui team rounded to the nearest int. No big deal, it's not actual money here.

there are different methods of rounding, and this one is likely caused by the always round up method when at a .5 value. there are methods that evenly distribute rounding, or at least attempt to.