wu :: forums
« wu :: forums - multiples of 2-digit numbers »

Welcome, Guest. Please Login or Register.
May 19th, 2024, 3:57am

RIDDLES SITE WRITE MATH! Home Home Help Help Search Search Members Members Login Login Register Register
   wu :: forums
   riddles
   easy
(Moderators: Eigenray, Icarus, william wu, towr, SMQ, ThudnBlunder, Grimbal)
   multiples of 2-digit numbers
« Previous topic | Next topic »
Pages: 1  Reply Reply Notify of replies Notify of replies Send Topic Send Topic Print Print
   Author  Topic: multiples of 2-digit numbers  (Read 2543 times)
Christine
Full Member
***





   


Posts: 159
multiples of 2-digit numbers  
« on: Jul 1st, 2014, 6:50pm »
Quote Quote Modify Modify

Is there a multiple of 11 that ends in 11 and whose sum of digits is 11
 
e.g.
 
912 is the smallest multiple of 12 ending in 12 whose sum of digits is 12
 
Are there any 2-digit numbers that don't satisfy these conditions?
IP Logged
dudiobugtron
Uberpuzzler
*****





   


Posts: 735
Re: multiples of 2-digit numbers  
« Reply #1 on: Jul 1st, 2014, 7:08pm »
Quote Quote Modify Modify

on Jul 1st, 2014, 6:50pm, Christine wrote:
Are there any 2-digit numbers that don't satisfy these conditions?

I'm having trouble interpreting this question.  It seems like for all 2-digit numbers which end in 11, their digits sum to 2, which is not 11.  So all 2 digit numbers don't satisfy the conditions.
IP Logged
Christine
Full Member
***





   


Posts: 159
Re: multiples of 2-digit numbers  
« Reply #2 on: Jul 1st, 2014, 7:30pm »
Quote Quote Modify Modify

I meant, from the list of all the digit numbers which do not satisfy the conditions.
 
e.g. 12, 13, 14, 15, 16, 17, 18, 19 do satisfy the conditions of my puzzle.
IP Logged
dudiobugtron
Uberpuzzler
*****





   


Posts: 735
Re: multiples of 2-digit numbers  
« Reply #3 on: Jul 1st, 2014, 7:54pm »
Quote Quote Modify Modify

on Jul 1st, 2014, 7:30pm, Christine wrote:
I meant, from the list of all the digit numbers which do not satisfy the conditions.
 
e.g. 12, 13, 14, 15, 16, 17, 18, 19 do satisfy the conditions of my puzzle.

Thanks for the clarification, I'm still a bit stuck though.  What are the conditions of your puzzle?  Apologies for not understanding it!
IP Logged
Christine
Full Member
***





   


Posts: 159
Re: multiples of 2-digit numbers  
« Reply #4 on: Jul 1st, 2014, 8:50pm »
Quote Quote Modify Modify

on Jul 1st, 2014, 7:54pm, dudiobugtron wrote:

  What are the conditions of your puzzle?  

 
Find, when possible,  multiples of N (all 2-digit numbers) that end in N and sum of the digits of the multiple is N.
 
 
« Last Edit: Jul 1st, 2014, 8:50pm by Christine » IP Logged
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: multiples of 2-digit numbers  
« Reply #5 on: Jul 1st, 2014, 10:36pm »
Quote Quote Modify Modify

on Jul 1st, 2014, 6:50pm, Christine wrote:
Is there a multiple of 11 that ends in 11 and whose sum of digits is 11?
Not even if it didn't end in 11.  
For multiples of eleven, if you add the digits in the odd position (SO) and subtract the digits in the even position (SE) , the result has to be a multiple of 11.  
Because you want the sum to be 11, the only valid multiple is 0, but 0 is even, and 11 is not. You can't have SO+SE=11 and SO-SE=0.
« Last Edit: Jul 1st, 2014, 10:37pm by towr » IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
dudiobugtron
Uberpuzzler
*****





   


Posts: 735
Re: multiples of 2-digit numbers  
« Reply #6 on: Jul 1st, 2014, 11:59pm »
Quote Quote Modify Modify

towr - I think your proof isn't robust enough, since 11 and -11 are also valid multiples.  These could be achieved with SO = 11 and SE = 0, or SE = 11 and SO = 0.
 
on Jul 1st, 2014, 8:50pm, Christine wrote:

 
Find, when possible,  multiples of N (all 2-digit numbers) that end in N and sum of the digits of the multiple is N.

 
OOOhh, right now I get it.  You wanted to find 2 digit numbers that worked like 12 does.  I thought you meant 2 digit numbers which were multiples of 11.  Apologies for the confusion.
IP Logged
Grimbal
wu::riddles Moderator
Uberpuzzler
*****






   


Gender: male
Posts: 7527
Re: multiples of 2-digit numbers  
« Reply #7 on: Jul 2nd, 2014, 6:10am »
Quote Quote Modify Modify

on Jul 1st, 2014, 10:36pm, towr wrote:

Not even if it didn't end in 11.  
For multiples of eleven, if you add the digits in the odd position (SO) and subtract the digits in the even position (SE) , the result has to be a multiple of 11.  
Because you want the sum to be 11, the only valid multiple is 0, but 0 is even, and 11 is not. You can't have SO+SE=11 and SO-SE=0.

What is wrong with SO=11 and SE=0?
101010101010101010101 is a multiple of 11.  It just doesn't end in 11.
 
PS: oops, I didn't see dudiobugtron already made that point.
« Last Edit: Jul 2nd, 2014, 12:41pm by Grimbal » IP Logged
rloginunix
Uberpuzzler
*****





   


Posts: 1029
Re: multiples of 2-digit numbers  
« Reply #8 on: Jul 2nd, 2014, 9:19am »
Quote Quote Modify Modify

Dangit. How did I miss this one? Checked the forum last night and saw nothing ...
 
You can use an iterative approach:
 
1). A 3-digit number "abc" (in base 10) is divisible by 11 iff: a - b + c = 11*k, but b == c, hence a = 11*k where "a" is a 0-9 digit. Can't do it unless a == k == 0.
 
2). A 4-digit number "abcd": a - b + c - d = 11*k, c == d, hence a - b = 11*k, where "a" and "b" are 0-9 digits. Again, can't do it unless a == b == k == 0. (Not even considering the sum of digits yet).
 
3). A 5-digit number "abcde": a - b + c - d + e = 11*k, d == e, hence a - b + c == 11*k.
 
Aha! Now you see a pattern emerging: to construct a smallest number (divisible by 11) satisfying the "last two digits are 11" requirement you have to make "a" as small as possible, zero out the "b" and add 9 in the odd position:
 
20911
 
I think that should be the smallest one. However, the sum of digits is not 11. You can eliminate the "smallest" requirement and use the above method to construct an arbitrary number (like Grimbal did with a long string of zeros and ones) but all three requirements, 1) divisible by 11, 2) last two digits are 11 (or simply equal), 3) digits sum to 11, can't be satisfied.
IP Logged
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: multiples of 2-digit numbers  
« Reply #9 on: Jul 2nd, 2014, 10:44am »
Quote Quote Modify Modify

on Jul 1st, 2014, 11:59pm, dudiobugtron wrote:
towr - I think your proof isn't robust enough, since 11 and -11 are also valid multiples.  These could be achieved with SO = 11 and SE = 0, or SE = 11 and SO = 0.
Hmm, yes. I guess I can't drop the "ending in 11" condition, which makes SE and SO >= 1 And therefore SE and SO <= 10
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
Pages: 1  Reply Reply Notify of replies Notify of replies Send Topic Send Topic Print Print

« Previous topic | Next topic »

Powered by YaBB 1 Gold - SP 1.4!
Forum software copyright © 2000-2004 Yet another Bulletin Board