All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
50 - Digit Number (Posted on 2003-11-15) Difficulty: 3 of 5
A number of 50 digits has all its digits equal to 1 except the 26th digit. If the number is divisible by 13, then find the digit in the 26th place.

See The Solution Submitted by Ravi Raja    
Rating: 3.0000 (7 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
re(3): solution | Comment 20 of 43 |
(In reply to re(2): solution by Kirk)

Sorry, Kirk. I did not mean to intimidate you. Modular arithmetic should be pre-university, but maybe it isn't. It wasn't back in 1959 when I first went to college, but those were primitive times! Anyway, the idea is simply that given a fixed whole number m greater than 1 (called the modulus) we can do an interesting brand of arithmetic by only considering the remainders after dividing by m. When we do this, we say we are calculating modulo m, or for short, mod m. Two numbers are "the same" mod m (or "congruent" modulo m) if they leave the same remainder when divided by m. If we introduce the operator % (as in the C programming language) used to indicate remaindering, so that a%m means the remainder when a is divided by m, and use / to denote the quotient operation (or "integer divide") we have a=m*(a/m) + a%m=m*q+r. It is quite easy to show that (a+b)%m= (a%m+b%m)%m and (ab)%m= ((a%m)*(b%m))%m, which means we can remainder first before adding or multiplying without affecting the remainder of the result. It is this that makes casting out nines work as a checksum. Since (10^n)%9=1, 176923%9 =(1+7+6+9+2+3)%9=1. The same idea can be applied to digit problems using any value for m, although m=9 is the nicest for decimals, and m=11 is second nicest (since (10^n)%11=(-1)^n).

Working mod m is very basic in puzzle math. For example, working mod 7, it can be shown with a bit of work that every year must have at least one Friday the 13th (leap years must be treated separately).

I hope this clears up the concept of "mod m" for you and enables you to begin to use it in solving problems.

~Richard
  Posted by Richard on 2003-11-21 17:48:09

Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (24)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information