wu :: forums
« wu :: forums - All the digits without repeats »

Welcome, Guest. Please Login or Register.
Nov 28th, 2024, 1:27pm

RIDDLES SITE WRITE MATH! Home Home Help Help Search Search Members Members Login Login Register Register
   wu :: forums
   riddles
   putnam exam (pure math)
(Moderators: william wu, Icarus, Eigenray, towr, Grimbal, SMQ)
   All the digits without repeats
« Previous topic | Next topic »
Pages: 1  Reply Reply Notify of replies Notify of replies Send Topic Send Topic Print Print
   Author  Topic: All the digits without repeats  (Read 2149 times)
John C.
Guest

Email

All the digits without repeats  
« on: Apr 9th, 2005, 9:52am »
Quote Quote Modify Modify Remove Remove

Alright guys =) i need an answer to this question and its been bugging me... if you manage to figure it out PLEASE email me at shadowmage@comcast.net!!! thank you soo much *start problem* :
 
 
Find a number that uses all the whole digits between 0 and 10, uses each number only once, and is evenly divisable by all whole numbers between 2 and 18. Ex. 1,234,567,890 is a valid number that uses each number only once, but its not the correct answer because it is not evenly divisable by the number 17. Good luck.
 
« Last Edit: Nov 22nd, 2005, 5:39pm by Icarus » IP Logged
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re: Just Looking for an answer  
« Reply #1 on: Apr 9th, 2005, 10:59am »
Quote Quote Modify Modify

EDIT: Ignore this post, it contains an error. Thanks go to T&B for telling me.
on Apr 9th, 2005, 9:52am, John C. wrote:
Alright guys =) i need an answer to this question and its been bugging me... if you manage to figure it out PLEASE email me at shadowmage@comcast.net!!! thank you soo much *start problem* :
 
 
Find a number that uses all the whole digits between 0 and 10, uses each number only once, and is evenly divisable by all whole numbers between 2 and 18. Ex. 1,234,567,890 is a valid number that uses each number only once, but its not the correct answer because it is not evenly divisable by the number 17. Good luck.
 

Find the smallest number that's divisable by all numbers from 1 to 18. ( div by 0 won't work Wink )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
18
Don't have to worry 'bout 9, 6, 3, 2 and 1 anymore.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 17
18*17
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 16
18*17*16
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
But, 18*16 is divisable by 12 ( 18*2 is, so 18*2*8 is )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 15
18*17*16*15
From which follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 14
18*17*16*15*14
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 13
18*17*16*15*14*13
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 
Next up: 11 ( 12 is already fixed Wink )
18*17*16*15*14*13*11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Next up? Done!
 
So, let's get our calculator! Multiplying gets me to 13366080.
 
So, we need to find a number using these digits only once, that's divisable by this number.
Notice how we are 2 tokens short?
 
So, we could get out our calculators, and tactically multiply this string with 75 up to 750, and checking if it matches Wink...
« Last Edit: Apr 9th, 2005, 11:56am by Sjoerd Job Postmus » IP Logged
ThudnBlunder
Uberpuzzler
*****




The dewdrop slides into the shining Sea

   


Gender: male
Posts: 4489
Re: Just Looking for an answer  
« Reply #2 on: Apr 9th, 2005, 11:16am »
Quote Quote Modify Modify

SJB, your number is not divisible by 11.
 
I get the smallest such number to be 25*32*5*7*11*13*17 = 24504480
 
But this is from 51 to 403 times too small.
 
At the moment I can't think of a good way to find out exactly how many times too small.
 
 
« Last Edit: Apr 9th, 2005, 11:25am by ThudnBlunder » IP Logged

THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re: Just Looking for an answer  
« Reply #3 on: Apr 9th, 2005, 11:52am »
Quote Quote Modify Modify

on Apr 9th, 2005, 11:16am, THUDandBLUNDER wrote:
SJB, your number is not divisible by 11.
 
I get the smallest such number to be 25*32*5*7*11*13*17 = 24504480
 
But this is from 51 to 403 times too small.
 
At the moment I can't think of a good way to find out exactly how many times too small.
 
 

Ok, I've found out an error in my algorithm, but your answer is clouded as well. By a factor two, that is. (That's what you get for abbr. my name wrongly Wink )
 
24*32*5*7*11*13*17 = 12252240
 
An algorith to find the smallest number(i) possible that's dividable by all numbers up to n
i = 1;
for ( x=2; x <= n; x++ )
  if isprime(x) {
    y = x;
    while ( y < n/x ) { y *= x; }
    i *= y;
  }
 
In other words. For every prime ranging from 2 to n, find the highest power possible that's smaller or the same as n. Multiply those
 
For this situation, 18...
24 * 32... close to t&b's answer. My first 'guess' was wrong to: I skipped multiplying by 11.
 
EDIT: Fixing some bugs Wink
« Last Edit: Apr 9th, 2005, 11:55am by Sjoerd Job Postmus » IP Logged
ThudnBlunder
Uberpuzzler
*****




The dewdrop slides into the shining Sea

   


Gender: male
Posts: 4489
Re: Just Looking for an answer  
« Reply #4 on: Apr 9th, 2005, 1:13pm »
Quote Quote Modify Modify

Sjoerd Job Postumus  Tongue,  your number is not evenly divisible by 16.
« Last Edit: Apr 9th, 2005, 1:17pm by ThudnBlunder » IP Logged

THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re:  
« Reply #5 on: Apr 9th, 2005, 1:18pm »
Quote Quote Modify Modify

on , N/A wrote:

32? Correct me if I'm wrong... but isn't 32 out of the 2 - 18 range? Wink...
 
12252240 / 2  = 6126120
12252240 / 3  = 4084080
12252240 / 4  = 3063060
12252240 / 5  = 2450448
12252240 / 6  = 2042040
12252240 / 7  = 1750320
12252240 / 8  = 1531530
12252240 / 9  = 1361360
12252240 / 10 = 1225224
12252240 / 11 = 1113840
12252240 / 12 = 1021020
12252240 / 13 = 942480
12252240 / 14 = 815160
12252240 / 15 = 816816
12252240 / 16 = 765765
12252240 / 17 = 720720
12252240 / 18 = 680680
--- All conditions met ---
 
Now for the final answer? Still calculating Wink... trying to get a program to do it, because I'm lazy Smiley
 
EDIT: That's what I get for jumping on the gun... but still, my answer is div'able by 16 Wink
« Last Edit: Apr 9th, 2005, 1:19pm by Sjoerd Job Postmus » IP Logged
Grimbal
wu::riddles Moderator
Uberpuzzler
*****






   


Gender: male
Posts: 7527
Re: Just Looking for an answer  
« Reply #6 on: Apr 9th, 2005, 4:12pm »
Quote Quote Modify Modify

I just tested all multiples of 16*9*5*7*11*13*17 for unicity of digits and for divisibility, it gives:
2438195760
3785942160
4753869120
4876391520

« Last Edit: Apr 9th, 2005, 4:13pm by Grimbal » IP Logged
John C.
Guest

Email

Re: Just Looking for an answer  
« Reply #7 on: Apr 9th, 2005, 9:37pm »
Quote Quote Modify Modify Remove Remove

wow, you guys/gals are really on top of things thanks soo much!  Grin Grin Grin
IP Logged
ThudnBlunder
Uberpuzzler
*****




The dewdrop slides into the shining Sea

   


Gender: male
Posts: 4489
Re: Just Looking for an answer  
« Reply #8 on: Apr 9th, 2005, 10:40pm »
Quote Quote Modify Modify

on Apr 9th, 2005, 9:37pm, John C. wrote:
wow, you guys/gals are really on top of things thanks soo much!  Grin Grin Grin

I would have preferred a bit more analysis.
Actually, the first two answers are not evenly divisible by 16.
 
IP Logged

THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Just Looking for an answer  
« Reply #9 on: Apr 10th, 2005, 6:59am »
Quote Quote Modify Modify

on Apr 9th, 2005, 10:40pm, THUDandBLUNDER wrote:
I would have preferred a bit more analysis.
Actually, the first two answers are not evenly divisible by 16.
Yes they are..
And they'd better be considering they're multiples of 16*9*5*7*11*13*17
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
John C.
Guest

Email

Re: Just Looking for an answer  
« Reply #10 on: Apr 10th, 2005, 8:40am »
Quote Quote Modify Modify Remove Remove

True, BUT, even if it is not correct the first time, i did not expect such a snappy response =) so thank you for atleast getting back to it quickly!  Wink
IP Logged
ThudnBlunder
Uberpuzzler
*****




The dewdrop slides into the shining Sea

   


Gender: male
Posts: 4489
Re: Just Looking for an answer  
« Reply #11 on: Apr 10th, 2005, 10:26am »
Quote Quote Modify Modify

on Apr 10th, 2005, 6:59am, towr wrote:

Yes they are..
And they'd better be considering they're multiples of 16*9*5*7*11*13*17

The number must be divisible by 32.
 
evenly =/= even   Roll Eyes
 
« Last Edit: Apr 10th, 2005, 10:27am by ThudnBlunder » IP Logged

THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Just Looking for an answer  
« Reply #12 on: Apr 10th, 2005, 10:29am »
Quote Quote Modify Modify

Huh
Why must it be divisible by 32?
IP Logged

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




The dewdrop slides into the shining Sea

   


Gender: male
Posts: 4489
Re: Just Looking for an answer  
« Reply #13 on: Apr 10th, 2005, 10:55am »
Quote Quote Modify Modify

on Apr 10th, 2005, 10:29am, towr wrote:
Huh
Why must it be divisible by 32?

Because the problem statement says 'and is evenly divisable by all whole numbers between 2 and 18', and I interpret that to mean that if you divide the number by another that is between 2 and 18 then you will get an even number.
 
But maybe that is not what was intended? Or perhaps my interpretation is wrong? If, as may be the case, 'evenly divisable' means simply 'divisible' then the word "evenly" would seem to be completely superfluous.  
 
« Last Edit: Apr 11th, 2005, 11:53am by ThudnBlunder » IP Logged

THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Just Looking for an answer  
« Reply #14 on: Apr 10th, 2005, 12:08pm »
Quote Quote Modify Modify

I do think 'evenly' was superfluous. And just a way to say the parts were the number is divided into are all equal.
 
Well, we only needed one answer, so given that at least the latter two fit under either interpretation that should suffice Tongue
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re: Just Looking for an answer  
« Reply #15 on: Apr 11th, 2005, 10:07am »
Quote Quote Modify Modify

Something on 'evenly divisible':
 
http://www.testmagic.com/forums/showthread.php?t=22143
 
A is evenly divisible by B if A MOD B = 0.
IP Logged
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Just Looking for an answer  
« Reply #16 on: Apr 12th, 2005, 7:27am »
Quote Quote Modify Modify

on Apr 11th, 2005, 10:07am, Sjoerd Job Postmus wrote:
Something on 'evenly divisible':
 
http://www.testmagic.com/forums/showthread.php?t=22143
 
A is evenly divisible by B if A MOD B = 0.

And A is divisible by B, under the same condition. So 'evenly' doesn't add anything (except confusion).
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
John C.
Guest

Email

Re: Just Looking for an answer  
« Reply #17 on: Apr 14th, 2005, 9:56am »
Quote Quote Modify Modify Remove Remove

Undecided well sorry for the confusion folks...thats exactly how i got the question so thats exactly how i posed it ... but now we all know a little bit more about the term "Divisible"
IP Logged
asterex
Guest

Email

Re: Just Looking for an answer  
« Reply #18 on: Apr 14th, 2005, 10:11am »
Quote Quote Modify Modify Remove Remove

If evenly divisible means you end up with an even number, have you ever heard anyone use the term "oddly divisible"?
The reason for saying evenly is because technically any number is divisible, i.e. able to be divided, by any number.  One hundred is divisible by three.  But if you have one hundred gold coins, they can not be evenly divided among three people without chopping a coin into pieces.
IP Logged
Grimbal
wu::riddles Moderator
Uberpuzzler
*****






   


Gender: male
Posts: 7527
Re: Just Looking for an answer  
« Reply #19 on: Apr 15th, 2005, 1:02am »
Quote Quote Modify Modify

I would even say that "even" is a shortcut for "evenly divisible in 2 parts", where evenly doesn't mean that there is no rest, but that the parts are equal.
IP Logged
Nick S
Guest

Email

Re: Just Looking for an answer  
« Reply #20 on: Nov 20th, 2005, 1:57pm »
Quote Quote Modify Modify Remove Remove

Well, the problem with all your answers is that they either use a number too many times or they dont use the other ones enough. They must use 0-9 and only use each once.
IP Logged
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Just Looking for an answer  
« Reply #21 on: Nov 20th, 2005, 2:58pm »
Quote Quote Modify Modify

on Nov 20th, 2005, 1:57pm, Nick S wrote:
Well, the problem with all your answers is that they either use a number too many times or they dont use the other ones enough. They must use 0-9 and only use each once.
Where do you see any supposed answer that's wrong? Because the ones I see do have each digit exactly once.
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re: Just Looking for an answer  
« Reply #22 on: Nov 21st, 2005, 1:24pm »
Quote Quote Modify Modify

Funny thing to notice is that none of the numbers are divisable by 19 Wink...
 
Just checked, out of boredom, if we could add 19 to it too, to decrease the list down to 1 item, or less then the 4 we have.
 
But, none of them are div. by 19, so it doesn' work out
IP Logged
Grimbal
wu::riddles Moderator
Uberpuzzler
*****






   


Gender: male
Posts: 7527
Re: Just Looking for an answer  
« Reply #23 on: Nov 22nd, 2005, 5:27am »
Quote Quote Modify Modify

Maybe that's why the problem statement asks for 2-18?
IP Logged
Sjoerd Job Postmus
Full Member
***





   


Posts: 228
Re: Just Looking for an answer  
« Reply #24 on: Nov 22nd, 2005, 10:11am »
Quote Quote Modify Modify

on Nov 22nd, 2005, 5:27am, Grimbal wrote:
Maybe that's why the problem statement asks for 2-18?

True, good point. But that doesn't make me not explore new possibilities.
IP Logged
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