What is the easiest way to know if large number is divisible by 57? For example, how could I deduce that 57 divides 300000177?
What is easiest way to know it the large number divisible by 57
3.3k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 5 best solutions below
On
$5+7=12=3\cdot4$, so divisibility by $57$ implies being a multiple of $3$. Since $3+1+7+7=18=$ $=3\cdot6$, your number meets this demand, the other being divisibility by $19$. Since $100=5\cdot20=$ $=5(19+1)$, your number is divisible by $19$ if $77\cdot5^0+01\cdot5^1+00\cdot5^2+00\cdot5^3+3\cdot5^4=77+$ $+5+3\cdot625=82+1875=1957=19\cdot103$ is a multiple of $19$, which is indeed the case.
On
To check divisibility by $57$ you simply check divisibility by $3$ and $19$.
If you are familiar with modular arithmetic, use the fact that
$$20 \equiv 1 \pmod{19}$$ Therefore, if you have a number $n$ add the last 2 digits with 5 times the rest and repeat. $n$ is divisible by $19$ if and only if any of the numbers you get is divisible by $19$.
$$300000177 \rightarrow 77+5*3000001=15000082 \to 82+5*150000=750082 \to 82+5*7500=37582 \to 82+5*375=1957 \to 57+5*19$$ as both 57 and 19 are divisible by 19, the original number is also divisible by 19.
If you want directly a divisibility rule by $57$, use that $399$ is a multiple of 57. Therefore $$400 \equiv 1 \pmod{57}$$
this leads to a similar more complicated rule.
Added $20 \equiv 1 \pmod{19}$ means $100 \equiv 5 \pmod{19}$. Write $n =100 a+b$. Then $$n =100a+b \equiv 5a+b \pmod{19}$$
On
Hint $\ \ 3\mid n\iff\,$ the sum of the decimal digits of $\,n\,$ is $\,\equiv 0\pmod 3,\,$ by $\,10\equiv 1\pmod 3$
and $\ \ \ 19\mid n\iff 19\,$ divides the reversed digit number in radix $2\,$ (binary), $ $ since, e.g.
$\!\!\!\begin{eqnarray} &&19\mid\ \ d_3 10^3\! + d_2 10^2\! + d_1 10 + d_0\\ \iff &&19\mid (d_3 10^3\! + d_2 10^2\! + d_1 10 + d_0)\, 2^3\ \ {\rm by}\ \ (19,2) = 1. \ \text{ Thus, using} \ \, 20\equiv 1\!\!\!\pmod{19}\\ \iff &&19\mid\ d_3 + d_2 2 + d_1 2^2 + d_0 2^3 = \text{ reversed number in binary}\\ \iff &&19\mid\ d_3 + 2(d_2 + 2(d_1 + 2 d_0))\ \ \text{in Horner form} \end{eqnarray}$
e.g. $\quad\! 19\mid 5016\ $ by $\ 6)\!\!\!\!\!\underset{\ \ \ \ \large\equiv\,\color{#0a0}{12}^{\phantom|}}{2}\!\!\!\!\color{#c0F}{+1})\!\!\!\underset{\large \ \ \ \equiv\, \color{#c00}7^{\phantom |}}2\!\!\!+ 0)\!\!\!\!\underset{\large\ \ \ \equiv\, 14^{\phantom |}}2\!\!\!+5\equiv 0\pmod{19}\ $ takes only $\,5\,$ secs mentally.
$\!\equiv\color{#0a0}n$ is partial eval: $\,(6)2\equiv \color{#0a0}{12};\,\ (\color{#0a0}{12}\!\color{#c0f}{+\!1})2\equiv\color{#c00} 7;\,\ (\color{#c00}7\!+\!0)2 \equiv 14;\,\ 14\!+\!5\equiv 0\ $ above.
On
Number is divisible by 57 if the sum of '4 times hundreds + last two digit' is divisible by 57. For more detail about cross divisibility test refer Divisibility criteria for $7,11,13,17,19$
As noted in the comments, $n$ is divisible by $57$ if and only if $n$ is divisible by $3$ and by $19$.
Divisibility test for $3$ is well known (as noted by Semiclassical above): Just see if the sum of the digits is divisible by $3$.
Divisibility test for $19$: Take the last digit of $n$ and double it. Add this result to what is left of $n$ after removing the last digit. Your original number is divisible by $19$ if and only if your final answer is divisible by $19$.
Reasoning: Write $n=10a+b$ where $b$ is a $1$-digit number. We have: $$19\mid 10a+b \Leftrightarrow 19\mid 10a+b+19b \Leftrightarrow 19\mid 10a+20b\Leftrightarrow 19\mid a+2b$$ (last follows since $10$ and $19$ are relatively prime).
For longer numbers, apply the rule as many times as necessary.
Example: $n=2137$. $213+2\cdot 7=227$. $22+2\cdot 7=36$. So $2137$ is not divisible by $19$.
(Note: Divisibility tests here assume that $n$ is expressed in base 10).