Introduction: K'Nex Binary Machine
This device can be used to add, subtract or multiply binary numbers (i.e. numbers expressed in base 2) by dropping balls into columns.
It can also be set to count sequentially so that you can see how base-2 counting works.
There is one column for each power of 2 (from 20 = 1 to 211 = 2048), thus enabling a 12-bit number to be handled.
Starting with the machine showing 12 zeroes, if a ball is inserted into the column on the far right (Column 0), the displayed 0 is changed to 1.
When another ball is inserted in that column, the 1 is changed to 0 and the digit to the left (in Column 1) changes from 0 to 1, i.e. there has been a 'carry-over' (in base ten – i.e. decimal, our normal notation – a carry-over occurs when 9 is reached, but in binary it happens when 1 is reached). The machine now displays 000000000010, i.e. 10 in binary (we can ignore the leading zeroes, just like we can in base ten).
When a third ball is dropped into Column 0, it again changes to 1, and the machine now displays 11, representing 3 in base ten.
Now the fun starts. When a fourth ball is dropped into Column 0, there is a double carry-over, resulting in 100 being displayed (any leading zeroes will be ignored from now on), representing the number 4.
And so it goes on. After 4,096 balls have been inserted, the machine will show 12 zeroes once more, because the machine will have overflowed. The overflowing ball is held in a tray so that the machine can, in fact, register results of up to five digits by adding 4096n to the displayed result where n is the number of balls in the overflow tray.
“So how can this machine be used to multiply numbers?” you may ask. Well, you must remember that, just as with our normal base-10 number system, the value of a digit is multiplied by 10 if it is shifted one position to the left, so a binary digit is worth twice as much if it is shifted one place to the left. For example, if you drop a ball in column 0, it is worth 1 (i.e. 20), but drop it in the column to the left - Column 1 - and it is worth 2 (i.e. 21). If you drop it in the column which is three places to the left, it is worth 23 = 8 times as much.
Let’s multiply 23 by 17.
First of all, express these as the sum of different powers of 2: (16 + 4 + 2 + 1) x (16 + 1).
We are going to insert two balls, one in the Column 4 (because 24 = 16) and the other in Column 0 (because 20 = 1). We end up with the machine showing 10001. This is 17, i.e. one lot of (16 + 1).
We are now going to add 2 more 17s, but instead of adding two more lots of balls to Columns 4 and 0, we are going to speed things up by dropping one ball in Column 5 and one in Column 1, i.e. one column to the left of the first 17. This means that we have just added twice as much – 2 x (16 + 1), making (2 + 1) x (16 + 1) altogether. The balls in the machine now represent 110011, i.e. 51 in base 10. We know it’s 51 because all we have got to do is add up the values of the columns which have a 1 displayed (32 + 16 + 2 + 1).
We now need to add 4 17s and so we drop one ball in Column 6 and one in column 2, i.e. two columns to the left of the first balls, to make them worth four times as much. The machine now represents (4 + 2 + 1) x (16 + 1).
Finally, we need to add 16 17s by dropping the balls in the columns which are 4 to the left of the original two columns, i.e. Columns 8 and 5. It’s 4 columns to the left because 16 is 24. The machine is now showing (16 + 4 + 2 + 1) x (16 + 1).
The machine ends up displaying 110000111 – there is a 1 in Columns 8, 7, 2, 1 and 0. The value of these bits is 28 + 27 + 22 + 21 + 20 = 391.
So now we have the result: 23 x 17 = 391 – and all we had to do was drop eight balls into the machine and add five numbers together!
So what about subtraction? Yes – it can be done!
The rule is this: drop a ball into each of the 12 columns, EXCLUDING the columns whose total value is ONE LESS than the number which is to be subtracted. The displayed number will, after a certain amount of clickety-clacketing, represent the answer.
The video below shows the machine counting and also how it can be used to add, multiply and subtract binary numbers.
The machine used just over 10,000 pieces, but a version could be made which used far fewer: there could be fewer columns, the ball lift is not strictly necessary, the ball funnels do not have to be so elaborate, etc.
The PDF below describes various aspects of the machine.
It can also be set to count sequentially so that you can see how base-2 counting works.
There is one column for each power of 2 (from 20 = 1 to 211 = 2048), thus enabling a 12-bit number to be handled.
Starting with the machine showing 12 zeroes, if a ball is inserted into the column on the far right (Column 0), the displayed 0 is changed to 1.
When another ball is inserted in that column, the 1 is changed to 0 and the digit to the left (in Column 1) changes from 0 to 1, i.e. there has been a 'carry-over' (in base ten – i.e. decimal, our normal notation – a carry-over occurs when 9 is reached, but in binary it happens when 1 is reached). The machine now displays 000000000010, i.e. 10 in binary (we can ignore the leading zeroes, just like we can in base ten).
When a third ball is dropped into Column 0, it again changes to 1, and the machine now displays 11, representing 3 in base ten.
Now the fun starts. When a fourth ball is dropped into Column 0, there is a double carry-over, resulting in 100 being displayed (any leading zeroes will be ignored from now on), representing the number 4.
And so it goes on. After 4,096 balls have been inserted, the machine will show 12 zeroes once more, because the machine will have overflowed. The overflowing ball is held in a tray so that the machine can, in fact, register results of up to five digits by adding 4096n to the displayed result where n is the number of balls in the overflow tray.
“So how can this machine be used to multiply numbers?” you may ask. Well, you must remember that, just as with our normal base-10 number system, the value of a digit is multiplied by 10 if it is shifted one position to the left, so a binary digit is worth twice as much if it is shifted one place to the left. For example, if you drop a ball in column 0, it is worth 1 (i.e. 20), but drop it in the column to the left - Column 1 - and it is worth 2 (i.e. 21). If you drop it in the column which is three places to the left, it is worth 23 = 8 times as much.
Let’s multiply 23 by 17.
First of all, express these as the sum of different powers of 2: (16 + 4 + 2 + 1) x (16 + 1).
We are going to insert two balls, one in the Column 4 (because 24 = 16) and the other in Column 0 (because 20 = 1). We end up with the machine showing 10001. This is 17, i.e. one lot of (16 + 1).
We are now going to add 2 more 17s, but instead of adding two more lots of balls to Columns 4 and 0, we are going to speed things up by dropping one ball in Column 5 and one in Column 1, i.e. one column to the left of the first 17. This means that we have just added twice as much – 2 x (16 + 1), making (2 + 1) x (16 + 1) altogether. The balls in the machine now represent 110011, i.e. 51 in base 10. We know it’s 51 because all we have got to do is add up the values of the columns which have a 1 displayed (32 + 16 + 2 + 1).
We now need to add 4 17s and so we drop one ball in Column 6 and one in column 2, i.e. two columns to the left of the first balls, to make them worth four times as much. The machine now represents (4 + 2 + 1) x (16 + 1).
Finally, we need to add 16 17s by dropping the balls in the columns which are 4 to the left of the original two columns, i.e. Columns 8 and 5. It’s 4 columns to the left because 16 is 24. The machine is now showing (16 + 4 + 2 + 1) x (16 + 1).
The machine ends up displaying 110000111 – there is a 1 in Columns 8, 7, 2, 1 and 0. The value of these bits is 28 + 27 + 22 + 21 + 20 = 391.
So now we have the result: 23 x 17 = 391 – and all we had to do was drop eight balls into the machine and add five numbers together!
So what about subtraction? Yes – it can be done!
The rule is this: drop a ball into each of the 12 columns, EXCLUDING the columns whose total value is ONE LESS than the number which is to be subtracted. The displayed number will, after a certain amount of clickety-clacketing, represent the answer.
The video below shows the machine counting and also how it can be used to add, multiply and subtract binary numbers.
The machine used just over 10,000 pieces, but a version could be made which used far fewer: there could be fewer columns, the ball lift is not strictly necessary, the ball funnels do not have to be so elaborate, etc.
The PDF below describes various aspects of the machine.
21 Comments
1 year ago
Neat! How long did this take to build?
Reply 1 year ago
You expect me to remember after 7 years?!!!
A few weeks, I guess; a few dozen hours maybe…
Reply 1 year ago
Well, at least you have a guess. I can't remember how long my first build took! For me it has been more than a year since I joined :)
8 years ago
Jay.najman@gmail.com
I just can't see the pdf
8 years ago
Yes
Reply 8 years ago
If you send me your email address in a private message I'll send you a copy, but I'd be interested to know what happens when you try to access it.
Ted
8 years ago
Hi, Elap: I'm a middle school science teacher, interested in building your binary machine. I can't seem to see your pdf. Could I trouble you to send me your PDFs instruction file, please? Thanks so much. Jay
Reply 8 years ago on Introduction
Jay
Are you saying that the PDF link just above these comments isn't working for you?
Ted (Elap is my initials)
10 years ago on Introduction
It's pretty good, how long did it take to make?
Reply 10 years ago on Introduction
I built the main machine over a two-week period and then added the ball-release feature (for use when multiplying) afterwards. I then realised that I had room for two more bits without increasing the height of the machine and added the two left-hand columns - but balls which land in those don't get returned.
10 years ago on Introduction
Thank you so very much Elap. You don't know how happy you made me:) Just take your time on the instructions, I'm not in any hurry at all.
10 years ago on Introduction
- How to make a ball cradle and ball funnel
- How to make the top of the sides and how the cradle and funnel are attached
- How to make the ball lift
- How to make the ball feed which is at the top of the ball lift
- How to make the digits and their fascias
- How to make the reset mechanism
- How to make the ball-release mechanism
- How to make the ball slopes (but you may prefer to use a different method)
- ...and anything else I ought to have included.
You will then be able to make the machine with as many columns as you want.When I have done that, I'll rename the Instructable "K'Nex Binary Machine v2" so that you don't have to keep having a look to see whether it's there.
Give me a few weeks though.
10 years ago on Introduction
Please say yes, please say yes,please say yes.
10 years ago on Introduction
This is neat! I like the method of the balls re-entering the lift, very clever. I always find this binary stuff confusing. :-P
10 years ago on Introduction
Can you please try to instructable this or at leas a simplified version of this? I would really like to know how to make something like this.
Reply 10 years ago on Introduction
The problem with a step-by-step Instructable is that, in the machine's current form, the instructions would be ridiculously lengthy. Also, there is plenty of scope to do things differently. The only really important part of the design is the ball cradles.
How simple would you like it to be? Would there be a ball lift? (If there wasn't one, the balls could simply fall on the floor at the front of the machine - with no ball lift or slopes, far, far fewer pieces would be required.) How many columns? Would there be ball funnels, or something simpler?
If you let me know how simplified you'd like it to be, I'll add some detailed instructions.
Reply 10 years ago on Introduction
Can you try to make the lengthy instructable? I love long complex projects to make. What I mean is make an instructable of the machine's current form. You could have yourself the best instructable on the site.
Reply 10 years ago on Introduction
Hmmm... It would be lot of work. Would anyone else be interested in actually making this pocket calculator?
10 years ago on Introduction
Really Cool!
10 years ago on Introduction
simple complaints, I had no trouble making most of this from the pdf, I did mod some of it but its mostly the same.