Numbers/Rounding and estimating

Notice: Incomplete

Estimating edit

Rounding edit

There are two main types of rounding, directed rounding and rounding to the nearest integer.

Directed Rounding edit

Directed rounding is when one rounds all numbers in the same direction. There are four types, rounding up, rounding down, rounding towards zero and rounding away from zero.

Rounding Up edit

To round up, you round all numbers to the integer after it.

Examples:

-1.7 rounds to -1

-1.3 rounds to -1

1.3 rounds to 2

1.7 rounds to 1

Rounding Down edit

To round down, you round all numbers to the integer before it.

Examples:

-1.7 rounds to -2

-1.3 rounds to -2

1.3 rounds to 1

1.7 rounds to 1

Rounding Towards Zero edit

To round towards zero, you round all numbers to the nearest integer that is closer to zero.

Examples:

-1.7 rounds to -1

-1.3 rounds to -1

1.3 rounds to 1

1.7 rounds to 1

Rounding Away From Zero edit

To round away from zero, you round all numbers to the nearest integer that is further from zero.

Examples:

-1.7 rounds to -2

-1.3 rounds to -2

1.3 rounds to 2

1.7 rounds to 2

Rounding To the Nearest Integer edit

Rounding to the nearest integer is self-explanatory. The problem is that some numbers don't have a 'nearest integer', notably, the numbers that are halfway between integers.