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
2
votes
1 answer

Prove divisibility: If $j_1\mid j_2$ and $j_2\mid j_1$, then $j_1 = \pm j_2$

I have this math question. I'm not 100% sure how to answer it. If $j_1\mid j_2$ and $j_2\mid j_1$, then $j_1 = \pm j_2$ I know that by definition $j_1\mid j_2\implies j_2 = j_1\cdot n$ for some $n\in \mathbb{Z}$. Also that $j_2\mid j_1\implies j_1…
KFC
  • 1,185
  • 6
  • 21
2
votes
1 answer

What is the positive divisors of $n(n^2-1)(n^2+3)(n^2+5)$

I want to find the positive divisors of $n(n^2-1)(n^2+3)(n^2+5)$ from $n(n-1)(n+1)$ 2 and 3 should divide this expression for all positive n. how can I find the rest? which python says $(2, 3, 6, 7, 9, 42, 14, 18, 21, 63,126)$
memonto
  • 321
2
votes
2 answers

Prove that if a|b, c|d, then ac|bd

I'm trying to prove it, but I can't find how. If a divides b, and c divides d, then a*c divides b*d
JorgeeFG
  • 493
2
votes
5 answers

Proving $n^3 + 3n^2 +2n$ is divisible by $6$

The full question is: Factorise $n^3 + 3n^2 + 2n$. Hence prove that when $n$ is a positive integer, $n^3 + 3n^2 + 2n$ is always divisible by $6$. So i factorised and got $n(n+1)(n+2)$ which i think is right? I'm not sure how to actually prove this…
2
votes
1 answer

A question about the divisibility of certain polynomial sequences.

$2n+1=(n+1)^2-(n)^2$ . Therefore $(n+1)^2-n^2$ never divides $2$ for any integers.Can we make a similar statement for $(n+1)^x-n^x=a_n$ ... And if we can, can we combine polynomials to give us a formula for integers that do not divide a certain set…
2
votes
1 answer

Is there a way to figure out the number of possible combinations in a given total using specific units

I'm not professional mathematician but I do love a math problem - this one, however has me stumped. I'm a UX Designer trying to figure out some guidelines for using tables in a page layout. The thing I want to know is how many possible combinations…
2
votes
2 answers

Proof of a divisibility rule

I'm trying to find a proof for the following result. Consider a sum $a+b=c$. If $p$ divides $c$ then either             a) both $a$ and $b$ are divisible by $p$             b) both $a$ and $b$ are not divisible by $p$ Another case that seems to…
2
votes
2 answers

Divisibility by 9 with negative number

I know the rule to check divisibility by 9: check if the sum of the digits of the number is divisible by 9. But what if the number is negative? Thanks in advance!
2
votes
3 answers

Dividing by Zero Using Exponents

I am sorry if I am missing some fundamental rule disproving my question, but I am very confused here. So $0^0 = 1$ and $x/x = x^0 = 1$ so if $x = 0$ $0/0 = 1$ The problem here is people have told me 0 divided by 0 equals undefined, but by using…
2
votes
1 answer

Find remainder when $20^{13}$ is divided by $4940$

Find remainder when $20^{13}$ is divided by $4940$ I have solved this, but am hoping for an elegant solution. My solution: $r(20^{13}||4940) = 20 \times r(20^{12}||247)$ where $r(a||b)$ is the remainder when $a$ is divided by $b$. $20^3 \equiv 96…
Morty
  • 575
2
votes
5 answers

whole numbers and division

Consider the whole number with one thousand digits that can be formed by writing the digits 2772 two hundred and fifty time in succession. Is it divisible by 9? Is it divisible by 11?
SNS
  • 97
  • 4
2
votes
4 answers

Divisibility test by 7

Pohlmann-Mass method Step A: If the integer is 1,000 or less, subtract twice the last digit from the number formed by the remaining digits. If the result is a multiple of seven, then so is the original number. Isn't this step enough to check…
2
votes
3 answers

Is a Number Divisible by 40

One of the "shortcuts" for determining if a number is divisible by 8 is to see if the last three digits are divisible by 8. One of the "shortcuts" for determining if a number is divisible by 5 is to see whether the last digit is a 5 or a 0. If I…
2
votes
2 answers

Prove $gcd(a,b)=gcd(a,2a+b)$

Call $gcd(a,b)=d$. Then $d|a$ and $d|b$. And if $c|a$ and $c|b$, then $c|d$. It's simple to show that $d$ is SOME divisor of $a$ and $2a+b$, since we already know $d|a$ and $d|b$, so it divides the linear combination $2a+b$. However, how can I show…
EthanAlvaree
  • 3,412
1
vote
1 answer

Reverse a division

I'm working on a program and I'm starting to regret the way I've done this. I start with a user selected number between 0.2 and 24 (lets call it a) then divide 12 by that number (so 12/a = b). Is there a way I can get a from the result, b? I know…
Spedwards
  • 155