Is an arbitrary number of the form xyzxyz divisible by 7, 11, 13?

13k Views Asked by At

So I was given this question

Choose any 3-digit number xyz and write it after itself as follows: xyzxyz. Check whether it is divisible by 7,11, 13. Is an arbitrary number of the form xyzxyz divisible by 7, 11, 13?

I am completely lost by this question. I seen divisibility of prime numbers and how to work with it, but I'm unsure how to apply it to this problem

7

There are 7 best solutions below

6
On BEST ANSWER

Hint:

$$7\cdot11\cdot13=1001$$

0
On

Hint:
Any number of the form of $xyzxyz$ is some integral multiple of $1001=7\cdot 11\cdot 13$

0
On

Every number of that form is divisible by $7$, $11$ and $13$:

$$\underbrace{xyz}_\text{1000xyz}~xyz = 1000xyz + xyz = 1001xyz = 7\cdot11\cdot13\cdot xyz$$

0
On

Existing answers are correct. This is an attempt to add a way of finding the answer that might help with other problems.

The first thing I asked myself was "What divisibility-related properties do numbers of the form xyzxyz have in common?". The obvious answer is divisibility by 1001.

I then looked at 7, 11, and 13.

Because $$7\cdot1\cdot3$$ is 21, their product must end with "1".

The product of three numbers, one slightly less than 10 and the other two slightly greater than 10 is in the general neighborhood of 1000.

That led to the easily checked conjecture that their product is 1001.

4
On

Here is a more naive approach. Just using the usual criteria.

Divisibility by 7: $$z+3y+2x+6z+4y+5x=7z+7y+7x=7 (x+y+z), $$so $xyzxyz $ is a multiple of $7$.

Divisibility by $11$: $$z-y+x-z+y-x=0, $$ so $xyzxyz $ is a multiple of $11$.

Divisibility by $13$: $$z-3y-4x-z+3y+4x=0, $$ so $xyzxyz $ is a multiple of $13$.

1
On

\begin{align} xyzxyz &= 10^5x + 10^4y + 10^3z + 10^2x + 10y + z\\ &= (10^5+10^2)x + (10^4+10)y + (10^3+1)z\\ &= 100(1001)x + 10(1001)y + (1001)z\\ &= 1001 (100x + 10y + z) \end{align}

Also $$\overline{xyz000} + xyz = \overline{xyxxyz} = 1001 * xyz$$

And $1001 = 7.11.13$

So any number of form $\overline{xyzxyz} = 7\cdot11\cdot13\cdot xyz$

1
On

Here's a handy proof to remember for divisibility by 7,11 and 13.
Remember lcm(7,11,13) = 7 * 11 * 13 since all the three numbers are co-primes.
Any integer n can be written as n = 1000q+r ---{ 0=<r<=999]
So, n = 1000(q - r) + 1001r
Since 7 * 11 * 13 = 1001.
7 * 11 * 13 | q-r -- [ if 7 * 11 * 13 | n then 7 * 11 * 13 | 1000(q-r) and 7 * 11 * 13 doesn't divide 1000.] Hence for any integer to be divisible by 7 * 11 *13 q -r should be divisible by the product, where q and r are the quotients and remainders of the number n when divided by 1000.
Now, just divide xyzxyz by 1000 and notice that both the remainders and quotients are xyz, respectively.
Hence, 7, 11 and 13 | xyzxyz.