(computer science) A redundant digit used to perform a check.
| Sci-Tech Dictionary: check digit |
(computer science) A redundant digit used to perform a check.
| 5min Related Video: Check digit |
| Computer Desktop Encyclopedia: check digit |
A numeric digit used to ensure that account numbers are entered accurately into the computer. Using a formula, a digit is calculated from each new account number, which is then made part of that number, either at the end, the beginning or somewhere in the middle of the number.
When an account number with the check digit is entered, the data entry program recalculates the check digit and compares it to the check digit entered. If the digits are not equal, the account number is considered invalid.
Download Computer Desktop Encyclopedia to your iPhone/iTouch
| Marketing Dictionary: check digit |
Character added to a string of characters and based on a formula applied against the original group of characters. Check digits are used to verify the accuracy of data entry by comparing the check digit calculated after entry with the check digit actually entered. For example, a key code such as OA34 might have a check digit of 8. The key entry clerk will enter OA348. The computer will then follow the appropriate formula to calculate a check digit
and determine whether the resultant check digit matches the character in the fifth position of the key code. If not, one of the four key code characters was presumably entered incorrectly. In an on-line system, the computer will prompt the clerk to reenter the information. In a batch system, the entry transaction will be rejected during update. See also tiebreaker.
| Business Dictionary: Check Digit |
Digit that is appended to a number so that an accountant can assure the number's correctness following a computation. As the number is utilized in processing, the identical calculation is performed to see if the new check digit is the same as the original one. If so, the number has been read or written accurately. A variation between the check digits indicates an error possibly due to an omission or transposition.
| Accounting Dictionary: Check Digit |
Digit that is appended to a number so that an accountant can assure the number's correctness following a computation. As the number is utilized in processing, the identical calculation is performed to see if the new check digit is the same as the original one. If so, the number has been read or written accurately. A variation between the check digits indicates an error possibly due to an omission or transposition.
| Wikipedia: Check digit |
|
|
This article does not cite any references or sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed. (September 2007) |
A check digit is a form of redundancy check used for error detection, the decimal equivalent of a binary checksum. It consists of a single digit computed from the other digits in the message.
With a check digit, one can detect simple errors in the input of a series of digits, such as a single mistyped digit, or the permutation of two successive digits.
Contents |
The final digit of a Universal Product Code is a check digit computed as follows:[1]
For instance, the UPC-A barcode for a box of tissues is "036000241457". The last digit is the check digit "7", and if the other numbers are correct then the check digit calculation must produce 7.
The final character of a ten digit International Standard Book Number is a check digit computed so that multiplying each digit by its position in the number (counting from the right) and taking the sum of these products modulo 11 is 0. The last digit (which is multiplied by 1) is the check digit, chosen to make the sum correct. It may need to have the value 10, which is represented as the letter X. For example, take the ISBN 0-201-53082-1. The sum of products is 0×10 + 2×9 + 0×8 + 1×7 + 5×6 + 3×5 + 0×4 + 8×3 + 2×2 + 1×1 = 99 ≡ 0 modulo 11. So the ISBN is valid.
While this may seem more complicated than the first scheme, it can be validated very simply by adding all the products together then dividing by 11. The sum can be computed without any multiplications by initializing two variables, t and sum, to 0 and repeatedly performing t = t + digit; sum = sum + t; (which can be expressed in C as sum += t += digit;). If the final sum is a multiple of 11, then the ISBN is valid.
ISBN 13 (in use January, 2007) is equal to the EAN-13 code found underneath a book's barcode. Its check digit is generated the same way as the UPC, except the even digits are multiplied by 3 instead of the odd digits. [3]
EAN (European Article Number) check digits (administered by GS1) - are calculated by summing the even position numbers and multiplying by 3, then adding the sum of the odd position numbers. The final digit of the result is subtracted from 10 to calculate the check digit (or left as is if already zero). A GS1 check digit calculator and detailed documentation is online at GS1's website. [4]
Compare to check bit.
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)
| check bit (computer science) | |
| check digit (technology) | |
| Account Number (in banking) |
| What is a check digit used for? | |
| Where is a check digit used? | |
| When and where check digit is used? |
Copyrights:
![]() | Sci-Tech Dictionary. McGraw-Hill Dictionary of Scientific and Technical Terms. Copyright © 2003, 1994, 1989, 1984, 1978, 1976, 1974 by McGraw-Hill Companies, Inc. All rights reserved. Read more | |
![]() | Computer Desktop Encyclopedia. THIS COPYRIGHTED DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher. © 1981-2009 Computer Language Company Inc. All rights reserved. Read more | |
![]() | Marketing Dictionary. Dictionary of Marketing Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved. Read more | |
![]() | Business Dictionary. Dictionary of Business Terms. Copyright © 2000 by Barron's Educational Series, Inc. All rights reserved. Read more | |
![]() | Accounting Dictionary. Dictionary of Accounting Terms. Copyright © 2005 by Barron's Educational Series, Inc. All rights reserved. Read more | |
![]() | Wikipedia. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article "Check digit". Read more |
Mentioned in