HOME

TheInfoList



OR:

Finger binary is a system for
counting Counting is the process of determining the number of elements of a finite set of objects, i.e., determining the size of a set. The traditional way of counting consists of continually increasing a (mental or spoken) counter by a unit for every ele ...
and displaying binary numbers on the
finger A finger is a limb of the body and a type of digit, an organ of manipulation and sensation found in the hands of most of the Tetrapods, so also with humans and other primates. Most land vertebrates have five fingers ( Pentadactyly). Chambers ...
s of either or both hands. Each finger represents one binary digit or
bit The bit is the most basic unit of information in computing and digital communications. The name is a portmanteau of binary digit. The bit represents a logical state with one of two possible values. These values are most commonly represente ...
. This allows counting from zero to 31 using the fingers of one hand, or 1023 using both: that is, up to 25−1 or 210−1 respectively. Using all ten toes as well would theoretically increase this to 1,048,575, but it seems unlikely that many people have the dexterity for this. Modern computers typically store values as some whole number of 8-
bit The bit is the most basic unit of information in computing and digital communications. The name is a portmanteau of binary digit. The bit represents a logical state with one of two possible values. These values are most commonly represente ...
byte The byte is a unit of digital information that most commonly consists of eight bits. Historically, the byte was the number of bits used to encode a single character of text in a computer and for this reason it is the smallest addressable uni ...
s, making the fingers of both hands together equivalent to 1 bytes of storage—in contrast to less than half a byte when using ten fingers to count up to 10.Since computers typically store data in a minimum size of one whole byte, fractions of a byte are used here only for comparison.


Mechanics

In the binary number system, each
numerical digit A numerical digit (often shortened to just digit) is a single symbol used alone (such as "2") or in combinations (such as "25"), to represent numbers in a positional numeral system. The name "digit" comes from the fact that the ten digits (Latin ...
has two possible states (0 or 1) and each successive digit represents an increasing
power of two A power of two is a number of the form where is an integer, that is, the result of exponentiation with number two as the base and integer  as the exponent. In a context where only integers are considered, is restricted to non-negativ ...
. Note: What follows is but one of several possible schemes for assigning the values 1, 2, 4, 8, 16, etc. to fingers, not necessarily the best. (see below the illustrations.): The rightmost digit represents two to the zeroth power (i.e., it is the "ones digit"); the digit to its left represents two to the first power (the "twos digit"); the next digit to the left represents two to the second power (the "fours digit"); and so on. (The decimal number system is essentially the same, only that powers of ten are used: "ones digit", "tens digit" "hundreds digit", etc.) It is possible to use anatomical digits to represent
numerical digit A numerical digit (often shortened to just digit) is a single symbol used alone (such as "2") or in combinations (such as "25"), to represent numbers in a positional numeral system. The name "digit" comes from the fact that the ten digits (Latin ...
s by using a raised finger to represent a binary digit in the "1" state and a lowered finger to represent it in the "0" state. Each successive finger represents a higher power of two. With palms oriented toward the counter's face, the values for when only the right hand is used are: When only the left hand is used: When both hands are used: And, alternately, with the palms oriented away from the counter: The values of each raised finger are added together to arrive at a total number. In the one-handed version, all fingers raised is thus 31 (16 + 8 + 4 + 2 + 1), and all fingers lowered (a fist) is 0. In the two-handed system, all fingers raised is 1,023 (512 + 256 + 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1) and two fists (no fingers raised) represents 0. It is also possible to have each hand represent an independent number between 0 and 31; this can be used to represent various types of paired numbers, such as month and day, X-Y
coordinate In geometry, a coordinate system is a system that uses one or more numbers, or coordinates, to uniquely determine the position of the points or other geometric elements on a manifold such as Euclidean space. The order of the coordinates is sign ...
s, or sports scores (such as for
table tennis Table tennis, also known as ping-pong and whiff-whaff, is a sport in which two or four players hit a lightweight ball, also known as the ping-pong ball, back and forth across a table using small solid rackets. It takes place on a hard table div ...
or
baseball Baseball is a bat-and-ball sport played between two teams of nine players each, taking turns batting and fielding. The game occurs over the course of several plays, with each play generally beginning when a player on the fielding t ...
). Showing the time as hours and minutes is possible using 10 fingers, with the hour using 4 fingers (0-23) and the minutes using 6 fingers (0-59).


Examples


Right hand

File:LSQ a.jpg, 0 =
empty sum In mathematics, an empty sum, or nullary sum, is a summation where the number of terms is zero. The natural way to extend non-empty sums is to let the empty sum be the additive identity. Let a_1, a_2, a_3, ... be a sequence of numbers, and let ...
File:Thumbs up.JPG, 1 = 1 File:[email protected], 2 = 2 Middle_finger_3_(mirrored).JPG, 4 = 4 File:LSQ v.jpg, 6 = 4 + 2 File:Tri prsta.jpg, 7 = 4 + 2 + 1 File:LSQ 6.jpg, 14 = 8 + 4 + 2 File:LSQ i.jpg, 16 = 16 File:I love you in Sign Language or the number 19 in Finger Binary.jpg, 19 = 16 + 2 + 1 File:LSQ 8.jpg, 26 = 16 + 8 + 2 File:LSQ 9.jpg, 28 = 16 + 8 + 4 File:LSQ 4.jpg, 30 = 16 + 8 + 4 + 2 File:LSQ 5.jpg, 31 = 16 + 8 + 4 + 2 + 1


Left hand

When used in addition to the right. Image:Thumbs up.jpg, 512 = 512 Image:Chinesische.Zahl.Eins.jpg, 256 = 256 Image:Chinesische.Zahl.Acht.jpg, 768 = 512 + 256 Image:Chinesische.Zahl.Drei.jpg, 448 = 256 + 128 + 64 Image:Chinesische.Zahl.Sechs.jpg, 544 = 512 + 32 Image:Chinesische.Zahl.Vier.jpg, 480 = 256 + 128 + 64 + 32 Image:Chinesische.Zahl.Fuenf.jpg, 992 = 512 + 256 + 128 + 64 + 32


Negative numbers and non-integers

Just as fractional and negative numbers can be represented in binary, they can be represented in finger binary.


Negative numbers

Representing negative numbers is extremely simple, by using the leftmost finger as a
sign bit In computer science, the sign bit is a bit in a signed number representation that indicates the sign of a number. Although only signed numeric data types have a sign bit, it is invariably located in the most significant bit position, so the term ...
: raised means the number is negative, in a
sign-magnitude In computing, signed number representations are required to encode negative number In mathematics, a negative number represents an opposite. In the real number system, a negative number is a number that is less than zero. Negative numbers are ...
system. Anywhere between and +511 can be represented this way, using two hands. Note that, in this system, both a positive and a negative zero may be represented. If a convention were reached on palm up/palm down or fingers pointing up/down representing positive/negative, you could maintain 210 −1 in both positive and negative numbers ( to +1023, with positive and negative zero still represented).


Fractions


Dyadic fractions

Fractions can be stored natively in a binary format by having each finger represent a fractional power of two: \tfrac. (These are known as
dyadic fraction In mathematics, a dyadic rational or binary rational is a number that can be expressed as a fraction whose denominator is a power of two. For example, 1/2, 3/2, and 3/8 are dyadic rationals, but 1/3 is not. These numbers are important in computer ...
s.) Using the left hand only: Using two hands: The total is calculated by adding all the values in the same way as regular (non-fractional) finger binary, then dividing by the largest fractional power being used (32 for one-handed fractional binary, 1024 for two-handed), and simplifying the fraction as necessary. For example, with thumb and index finger raised on the left hand and no fingers raised on the right hand, this is (512 + 256)/1024 = 768/1024 = 3/4. If using only one hand (left or right), it would be (16 + 8)/32 = 24/32 = 3/4 also. The simplification process can itself be greatly simplified by performing a
bit shift In computer programming, a bitwise operation operates on a bit string, a bit array or a binary numeral (considered as a bit string) at the level of its individual bits. It is a fast and simple action, basic to the higher-level arithmetic oper ...
operation: all digits to the right of the rightmost raised finger (i.e., all trailing zeros) are discarded and the rightmost raised finger is treated as the ones digit. The digits are added together using their now-shifted values to determine the numerator and the rightmost finger's original value is used to determine the
denominator A fraction (from la, fractus, "broken") represents a part of a whole or, more generally, any number of equal parts. When spoken in everyday English, a fraction describes how many parts of a certain size there are, for example, one-half, eight ...
. For instance, if the thumb and index finger on the left hand are the only raised digits, the rightmost raised finger (the index finger) becomes "1". The thumb, to its immediate left, is now the 2s digit; added together, they equal 3. The index finger's original value (1/4) determines the denominator: the result is 3/4.


Rational numbers

Combined
integer An integer is the number zero (), a positive natural number (, , , etc.) or a negative integer with a minus sign ( −1, −2, −3, etc.). The negative numbers are the additive inverses of the corresponding positive numbers. In the languag ...
and fractional values (i.e.,
rational number In mathematics, a rational number is a number that can be expressed as the quotient or fraction of two integers, a numerator and a non-zero denominator . For example, is a rational number, as is every integer (e.g. ). The set of all rat ...
s) can be represented by setting a
radix point A decimal separator is a symbol used to separate the integer part from the fractional part of a number written in decimal form (e.g., "." in 12.45). Different countries officially designate different symbols for use as the separator. The choi ...
somewhere between two fingers (for instance, between the left and right pinkies). All digits to the left of the radix point are integers; those to the right are fractional.


Decimal fractions and vulgar fractions

Dyadic fraction In mathematics, a dyadic rational or binary rational is a number that can be expressed as a fraction whose denominator is a power of two. For example, 1/2, 3/2, and 3/8 are dyadic rationals, but 1/3 is not. These numbers are important in computer ...
s, explained above, have limited use in a society based around decimal figures. A simple non-dyadic fraction such as 1/3 can be approximated as 341/1024 (0.3330078125), but the conversion between dyadic and decimal (0.333) or vulgar (1/3) forms is complicated. Instead, either decimal or vulgar fractions can be represented natively in finger binary. Decimal fractions can be represented by using regular integer binary methods and dividing the result by 10, 100, 1000, or some other power of ten. Numbers between 0 and 102.3, 10.23, 1.023, etc. can be represented this way, in increments of 0.1, 0.01, 0.001, etc.
Vulgar fraction A fraction (from la, fractus, "broken") represents a part of a whole or, more generally, any number of equal parts. When spoken in everyday English, a fraction describes how many parts of a certain size there are, for example, one-half, eight ...
s can be represented by using one hand to represent the numerator and one hand to represent the
denominator A fraction (from la, fractus, "broken") represents a part of a whole or, more generally, any number of equal parts. When spoken in everyday English, a fraction describes how many parts of a certain size there are, for example, one-half, eight ...
; a spectrum of rational numbers can be represented this way, ranging from 1/31 to 31/1 (as well as 0).


Finger ternary

In theory, it is possible to use other positions of the fingers to represent more than two states (0 and 1); for instance, a
ternary numeral system A ternary numeral system (also called base 3 or trinary) has three as its base. Analogous to a bit, a ternary digit is a trit (trinary digit). One trit is equivalent to log2 3 (about 1.58496) bits of information. Although ''ternary'' m ...
( base 3) could be used by having a fully raised finger represent 2, fully lowered represent 0, and "curled" (half-lowered) represent 1. This would make it possible to count up to 242 (35−1) on one hand or 59,048 (310−1) on two hands. In practice, however, many people will find it difficult to hold all fingers independently (especially the middle and ring fingers) in more than two distinct positions.


See also

*
Chisanbop Chisanbop or chisenbop (from Korean ''chi (ji)'' finger + ''sanpŏp (sanbeop)'' calculation 지산법/指算法), sometimes called Fingermath, is an abacus-like finger counting method used to perform basic mathematical operations. According to ...
* Senary#Finger counting


References

* * *


External links


Binary Counting
{{Gestures Finger-counting Elementary arithmetic Binary arithmetic