Counting with Fingers

When counting with your fingers, you would have each finger either up or down.

Using this logic, what is the maximum number you can count to using two hands of 5 fingers each, without memorizing any number?


The answer is 1023.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Sharky Kesa
Oct 30, 2017

Note that from the problem, we have the finger has two states, either up (which we will call 1 1 ) or down (which we will call 0 0 ). Thus, we can count in binary using the 10 10 fingers to get to 2 10 1 = 1023 2^{10}-1=1023 , without memorising any numbers.

Hunter Edwards
Oct 31, 2017

The problem states that each finger is allowed to have an up or down state, which represents the on and off states in binary. For the first hand in binary, we reach 31, as this is the maximum value when all fingers re up - we can get this through adding the digits of the fingers, which are 1, 2, 4, 8, and 16 (taking the last number and doubling it. This is what allows for the encoding of Base-10 into Base-2). By adding these 5 numbers, we get:

1 + 2 + 4 + 8 + 16 = 31 1+2+4+8+16=31

For the larger sum of the two hands, all we have to do is continue this logic of doubling the last number to add to the total sum. This is shown below:

1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 + 256 + 512 = 1023 1+2+4+8+16+32+64+128+256+512=1023

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...