Integer division that rounds up: Difference between revisions

From wikiluntti
Line 48: Line 48:
</math>
</math>


Thus we have
''Combine'' the results, and we have
<math>
<math>
\left \lfloor  \frac{x+y-1}{y} \right \rfloor  
\left \lfloor  \frac{x+y-1}{y} \right \rfloor  
Line 54: Line 54:
\left \lceil \frac{x}{y} \right \rceil
\left \lceil \frac{x}{y} \right \rceil
</math>
</math>
wich was the question.

Revision as of 11:23, 8 July 2024

Introduction

Usual integer division rounds down: for . To round up (if overflow is not an issue), you can use following algorithm with the usual roundig down division:

Proof

Proof is in two parts; 1st if divides , and if not. Note that usual integer division rounds down.

Part 1. If divides we have for some . Thus we have

because . This part is ok.

Part 2. If does not divide we have for some and . Thus we have

Combine the results, and we have wich was the question.