Divisibility

When we say that a number is divisible by number , we mean that can be divided by without leaving a remainder. In other words, is multiple of .

Example:

is divisible by because divided by equals without any remainder. is not divisible by because 15 divided by leaves a remainder of .

Formal Definition:

We can write this mathematically as:

If is divisible by , we can write as multiplied by another integer . In symbols: .

Equivalently, we can use the vertical line notation: . This means b divides a.

Example:

is divisible by because . Therefore, we can also write .

Checking Divisibility in Python:

In Python, we can use the modulo operator (%) to check if a number is divisible by another. If the remainder is , then the first number is divisible by the second.

print(15 % 3 == 0) # Output: True
print(15 % 4 == 0) # Output: False

Properties of Divisibility:

  • : If divides and , then divides .

    : Since divides , there is such that . Similarly, there is such that . Then

  • : If , then for any integer , .

    : Since , we have that for some . We can multiply both sides of equality by : . By defination, this means that is divisible by .

Quiz - Division by 101

Question : How many -digit non-negative numbers are there that have remainder when divided by 101? Here we assume that -digit and -digit numbers are also -digit, they just start with .

Answer :

All numbers having the remainder when divided by have the form for integer . The number given by this expression is non-negative and -digit for between and , inclusive.

These properties are essential for understanding divisibility and proving various mathematical theorems.

As you can see, divisibility is a fundamental concept in mathematics that has practical applications in various fields, from computer science to cryptography.