quarta-feira, 21 de novembro de 2018
Como saber se um número é divisível por 7?
2 comentários:
Regras para postar comentários:
I. Os comentários devem se ater ao assunto do post, preferencialmente. Pense duas vezes antes de publicar um comentário fora do contexto.
II. Os comentários devem ser relevantes, isto é, devem acrescentar informação útil ao post ou ao debate em questão.
III. Os comentários devem ser sempre respeitosos. É terminantemente proibido debochar, ofender, insultar e/ou caluniar quaisquer pessoas e instituições.
IV. Os nomes dos clubes devem ser escritos sempre da maneira correta. Não serão tolerados apelidos pejorativos para as instituições, sejam quais forem.
V. Não é permitido pedir ou publicar números de telefone/Whatsapp, e-mails, redes sociais, etc.
VI. Respeitem a nossa bela Língua Portuguesa, e evitem escrever em CAIXA ALTA.
Os comentários que não respeitem as regras acima poderão ser excluídos ou não, a critério dos moderadores do blog.
Nice.
ResponderExcluirThere are other methods for testing for divisibility by 7, of course, but this is probably the simplest one in the decimal (base 10) number system. However, there is one that is related to the test for divisibility by 9 and it involves changing the number base from base 10 to another number base. Here's the procedure, using the number 315 to illustrate:
First we need to express the number in the binary (base 2) number system:
1. Divide the number by 2 and set aside the remainder.
2. Repeat step 1 with the new number until the new number is 0.
3. Arrange the remainders in the reverse order from the order in which they were obtained.
So, with 315, here's what the successive divisions by 2 yield:
157 remainder 1
78 remainder 1
39 remainder 0
19 remainder 1
9 remainder 1
4 remainder 1
2 remainder 0
1 remainder 0
0 remainder 1
So, arranging these remainders in the reverse order, we get 100111011. This is what 315 looks like in base 2.
Next, we express the number in the octal (base 8) number system:
1. Partition the number into groups of three digits each, starting with the ones digit and proceeding to the left.
2. For each three digit group, replace it with a number from 0 to 7 in this way: 000=0, 001=1, 010=2, 011=3, 100=4, 101=5, 110=6, 111=7.
Here's what this looks like with 315, which in base 2 is 100111011:
Partitioning into groups of three digits each yields 100 111 011.
We replace 100 with 4, 111 with 7, and 011 with 3.
Therefore, 315 in base 8 is 473.
Alternatively, one can get to this point without converting to base 2 first by successively dividing by 8 and setting aside each remainder, but division by 2 is easier than division by 8, so that's why that step exists.
Now, we simply add the digits of the base-8 representation. If this sum is divisible by 7, the number is divisible by 7.
With 315, which in base 8 is 473, adding the digits of 473 gives 4 + 7 + 3 = 14, which is divisible by 7, so 315 is divisible by 7.
I just thought I should share that.
Very nice method, too, Jake!!
ExcluirThank you for sharing. :)