Questions tagged [divisibility]

This tag is for questions about divisibility, that is, determining when one thing is a multiple of another thing.

If $a$ and $b$ are integers, $a$ divides $b$ if $b=ca$ for some integer $c$. This is denoted $a\mid b$. It is usually studied in introductory courses in number theory, so add if appropriate.

A common notation used for the phrase "$a$ divides $b$" is $a|b$. It is also common to negate the notation by adding a slash like this: "$c$ does not divide $d$" written as $c\nmid d$. Note that the order is important: for example, $2|4$ but "$4\nmid 2$".

This notion can be generalized to any ring. The definition is the same: For two elements $a$ and $b$ of a commutative ring $R$, $a$ divides $b$ if $ac=b$ for some $c$ in $R$.

Divisibility in commutative rings corresponds exactly to containment the poset of principal ideals. That is, $a$ divides $b$ if and only if $aR\subseteq bR$. For commutative rings like principal ideal rings, this means that divisibility mirrors exactly the poset of all ideals of the ring.

The topics appropriate for this tag include, for example:

  • Questions about the relation $\mid$.
  • Questions about the GCD and LCM.

There are divisibility rule that is a shorthand way of determining whether a given integer is divisible by a fixed divisor without performing the division, usually by examining its digits.

6170 questions
1
vote
2 answers

What is the remainder when 318 is divided by 100?

I know people here might find it silly but I want to clear my understanding about remainder. I had a fight with my brother over this question. I suggested that remainder is something that is left when two numbers can't further be divided. This is…
user585765
1
vote
3 answers

$3a4b \equiv 0\pmod{3}$, $3a4b \equiv 3\pmod{5}$

When the four digit number $3a4b$ is divided by $5$, the remainder is $3$. This number can also be divided by $3$ without remainder. Evaluate $a$ and $b$. We have two conditions as illustrated below $$3a4b \equiv 0\pmod{3} \tag{1}$$ $$3a4b…
Busi
  • 572
1
vote
1 answer

Long Division - confused over different answers

I'm re-learning manual long division because I'm trying to code it, but I am confused and befuddled because the manual process gives me a different answer from that which I get using the divide function in LibreOffice Calc. Calc answer: 92068282 /…
1
vote
2 answers

Why do remainders on each side of the equation have to be equal?

I was looking at a Mathologer video recently when he was showing how to prove Fermat's last theorem for powers of $4$. And the guy speaking went on this tangent which involved taking remainders when dividing by something. As he was speaking, he…
Plzhelp
  • 21
1
vote
2 answers

Number of Divisor which perfect cubes and multiples of a number

n = $2^{14}$$3^9$$5^8$$7^{10}$$11^3$$13^5$$37^{10}$ How many positive divisors that are perfect cubes and multiples of $2^{10}$$3^9$$5^2$$7^{5}$$11^2$$13^2$$37^{2}$. I'm able to solve number of perfect square and number of of perfect cubes. But the…
Kai
  • 47
1
vote
1 answer

Divisibility step in a proof

This is a step from a proof I am reading that involves divisibility, not much in algebra. Let $z \in r(m\mathbb{Z})$, the radical of $m\mathbb{Z}$ (here $m$ is an integer). Trying to show the radical here can be reduced to primes and eventually the…
Lemon
  • 12,664
1
vote
3 answers

Circumstances where rounding by 3 or more decimal places is important

Are there any situations where rounding up by 3 or more decimal places is required? I have a computer system that is producing rounding errors if it rounds by only 2 decimal places. However, if i choose to round by 3 then the result is accurate. I…
1
vote
1 answer

Elephants, men, women, and divisibility.

Daniel is giving out all of his elephants to people. Overall, $28$ men and $37$ women showed up. Each man received the same number of elephants; ditto with women. Turns out, Daniel could only do it in a unique way. What is the largest number of…
Gerard L.
  • 2,536
1
vote
2 answers

Why does $n^{n+2}+(n+2)^n\bmod2n+2\equiv0$ for all positive odd integers $n$?

Another way of asking: Why is the expression ${a^b+b^a}\over{a+b}$ an integer whenever $a$ and $b$ are positive odd integers with a difference of 2? I saw this in a plot of all points $(a,b)$ that make that expression an integer, shown below. As…
volcanrb
  • 2,796
  • 9
  • 23
1
vote
0 answers

How to manually divide a large number through a large number

Now, I am sorry if this seems like a simple question in the title, but I really have not found any answer to this. Say we have the calculations 64563456435 / 4545432 = x 6456734 / 454543432 = x 645634.56435 / 4545.432 = x 6456.3456435 / 45454.32 =…
uncanny
  • 11
1
vote
2 answers

Find all integers $x$ such that $\frac{2x^2-3}{3x-1}$ is an integer.

Find all integers $x$ such that $\frac{2x^2-3}{3x-1}$ is an integer. Well if this is an integer then $3x-1 \mid 2x^2-3$ so $2x^2-3=3x-1(k)$ such that $k\in \mathbb{Z}$ from here not sure where to go I know that it has no solutions I just can't see…
HighSchool15
  • 2,061
  • 14
  • 35
1
vote
3 answers

What does $b$ does not divide $a$ mean?

Given a statement like $b$ divides $a$ means there exists some integer $k$ such that $a = b\cdot k$, does that mean if $b$ does not divide $a$, then there are integers $q$ and $r$ such that $a = q\cdot b +r$ for $0
MrStormy83
  • 639
  • 4
  • 14
1
vote
3 answers

A question concerning the confusion in divisibility tests

It is asked: What is the remainder when $25$ divides a number where natural ones are arranged in order from $1$ to $35$ as a single number $1234567...333435$? Before showing the way I did it, let's consider this: since $12=6\cdot 2$ it divides…
user36339
  • 575
  • 7
  • 23
1
vote
1 answer
1
vote
1 answer

How to find all positive divisors of a given number?

For example, I have to find all positive divisors of $372$. The prime factorization of $372$ is $2^2 \cdot 3 \cdot 31$ Now, I wonder if there is a fast method to find all positive divisors of $372$.