0
jumpergirl

How does this work?!?!?!?!?!

Recommended Posts

Quote

Does anyone know how it works????



Whenever you subtract an jumbled number from the base number (ie. 321-123) you will get a number which the sum of the digits are factor of 9...(ie. 9,18,27, etc) by knowing the sum of the other two or three numbers in the number the program adds or subtracts as nessecary to get to a number that is a factor of 9. since a single digit cannot be higher than 9, there is only one possible answer. :ph34r:

Share this post


Link to post
Share on other sites
That's really neat.. Got me on how that works though. Maybe some of the brainiaks around here can answer it.



"Find out just what any people will quietly submit to and you have found out the exact measure of injustice and wrong which will be imposed upon them."

Share this post


Link to post
Share on other sites
It works via brute force, meaning when you input your 1 or 2 numbers, it grinds out the possibilities computationally. Are you looking for a mathematical proof or a general "this is how?"

Frankly, it seems to work as long as you have at least 2 different numbers and don't pick a 0 when you are circling a number. Now the 0 does work most of the time, but I can break it with the correct numbers.

So, if you key in the numbers 1,2; that means you could have a number, 1-9 (remember you can't use a zero) in the computation. So, you have 27 possible pairs of numbers that you are looking for that match the following criteria:

x - y = z,
where z = 12a, or 1a2, or a12 and a is the missing number,
where the digits in x are the same digits in y, in a different order.

Now, with a 4 digit number, you have a total of 24 possible combinations with different numbers, 18 with 2 like numbers, and 12 with 2 like pairs of numbers.

After that, it's just a matter of brute force computing to figure out the correct missing number.

Not magic, just a counting problem. Who would think counting could be so difficult.

No matter how good she looks, someone, somewhere is
sick of her shit!

Share this post


Link to post
Share on other sites
That's what I was looking for! Now I get it.

This is one of those things that you learn in high school, but forget. I think it was one of those, "I'm going to learn this until I have a test on it then forget it because I'll never need to know this in real life." :D

Share this post


Link to post
Share on other sites
Quote

Okay, don't think it's working for me:

Pick a 3 or 4 digit number: 7599
Jumble it: 5799
Subtract one from other: 1500
Circle the 5
Jumble the remaining numbers: 010

It says it's 8, but it isn't.



7599-5799 is 1800 B|



I got a strong urge to fly, but I got no where to fly to. -PF

Share this post


Link to post
Share on other sites
Quote

Quote

Does anyone know how it works????



Whenever you subtract an jumbled number from the base number (ie. 321-123) you will get a number which the sum of the digits are factor of 9...(ie. 9,18,27, etc) by knowing the sum of the other two or three numbers in the number the program adds or subtracts as nessecary to get to a number that is a factor of 9. since a single digit cannot be higher than 9, there is only one possible answer. :ph34r:

sounds good but if you add more then 4 numbers the ( thing is out. the eqaution changes.

I tried it with a 6 digit number then the common Number is 8. it must be programmed for each equation depending on the amount of digits.

EDIT: now that I look again the magic # isnt 8. but Im sure it works on the same prinicple
My photos

My Videos

Share this post


Link to post
Share on other sites
Quote

sounds good but if you add more then 4 numbers the ( thing is out. the eqaution changes.

I tried it with a 6 digit number then the common Number is 8. it must be programmed for each equation depending on the amount of digits.



Hmm. Every Number I've tried (as high as 8 digits) always comes up with a number divisible by nine. Subtract the the two numbers, add up the digits, divide by nine and you will ALWYAS get an integer. Give me an example if you can find one that doesnt.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

0