One of the examples of a weighted checksum is the ISBN-10 code we see printed on the

Question:

One of the examples of a weighted checksum is the ISBN-10 code we see printed on the back cover of some books. In ISBN-10, there are 9 decimal digits that define the country, the publisher, and the book. The tenth (rightmost) digit is a checksum digit. The code, D1D2D3D4D5D6D7D8D9C, satisfies the following.

[(10 × D1) + (9 × D2) + (8 × D3) + ...+ (2 × D9) + (1 × C)] mod 11 = 0

In other words, the weights are 10, 9, . . .,1. If the calculated value for C is 10, one uses the letter X instead. By replacing each weight w with its complement in modulo 11 arithmetic (11 ˆ’ w), it can be shown that the check digit can be calculated as shown below.

C = [(1 × D1) + (2 × D2) + (3 × D3) + . . .+ (9 × D9)] mod 11

Calculate the check digit for ISBN-10: 0-07-296775-C.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: