Skip to content

Commit 2d97a9b

Browse files
sjwarner-bprpottsoh
authored andcommitted
isbn-verifier: Include more succinct description of ISBN-10. (#1019)
* Update description.md with more succinct description of ISBN-10. * isbn-verifer: add @Insti 's improvements * Add @coriolinus ' improvements. * isbn-verifier: change link in description.md * isbn-verifier: update description * isbn-verifier: improve grammar. * isbn-verifier: add example ISBN-10 with 'X' as check digit * isbn-verifier: move description's 'functionality' section and rename * isbn-verifier: change position of example * isbn-verifier: change section name and more small fixes * isbn-verifier: make formulae more consistent * Add @ErikSchierboom 's improvement
1 parent 1146777 commit 2d97a9b

File tree

1 file changed

+25
-20
lines changed

1 file changed

+25
-20
lines changed
Lines changed: 25 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,40 @@
1-
Check if a given ISBN-10 is valid.
1+
The [ISBN-10 verification process](https://en.wikipedia.org/wiki/International_Standard_Book_Number) is used to validate book identification
2+
numbers. These normally contain dashes and look like: `3-598-21508-8`
23

3-
## Functionality
4+
## ISBN
45

5-
Given an unknown string the program should check if the provided string is a valid ISBN-10.
6-
Putting this into place requires some thinking about preprocessing/parsing of the string prior to calculating the check digit for the ISBN.
6+
The ISBN-10 format is 9 digits (0 to 9) plus one check character (either a digit or an X only). In the case the check character is an X, this represents the value '10'. These may be communicated with or without hyphens, and can be checked for their validity by the following formula:
77

8-
The program should allow for ISBN-10 without the separating dashes to be verified as well.
8+
```
9+
(x1 * 10 + x2 * 9 + x3 * 8 + x4 * 7 + x5 * 6 + x6 * 5 + x7 * 4 + x8 * 3 + x9 * 2 + x10 * 1) mod 11 == 0
10+
```
911

10-
## ISBN
12+
If the result is 0, then it is a valid ISBN-10, otherwise it is invalid.
13+
14+
## Example
1115

12-
Let's take a random ISBN-10 number, say `3-598-21508-8` for this.
13-
The first digit block indicates the group where the ISBN belongs. Groups can consist of shared languages, geographic regions or countries. The leading '3' signals this ISBN is from a german speaking country.
14-
The following number block is to identify the publisher. Since this is a three digit publisher number there is a 5 digit title number for this book.
15-
The last digit in the ISBN is the check digit which is used to detect read errors.
16+
Let's take the ISBN-10 `3-598-21508-8`. We plug it in to the formula, and get:
17+
```
18+
(3 * 10 + 5 * 9 + 9 * 8 + 8 * 7 + 2 * 6 + 1 * 5 + 5 * 4 + 0 * 3 + 8 * 2 + 8 * 1) mod 11 == 0
19+
```
1620

17-
The first 9 digits in the ISBN have to be between 0 and 9.
18-
The check digit can additionally be an 'X' to allow 10 to be a valid check digit as well.
21+
Since the result is 0, this proves that our ISBN is valid.
22+
23+
## Task
24+
25+
Given a string the program should check if the provided string is a valid ISBN-10.
26+
Putting this into place requires some thinking about preprocessing/parsing of the string prior to calculating the check digit for the ISBN.
1927

20-
A valid ISBN-10 is calculated with this formula `(x1 * 10 + x2 * 9 + x3 * 8 + x4 * 7 + x5 * 6 + x6 * 5 + x7 * 4 + x8 * 3 + x9 * 2 + x10 * 1) mod 11 == 0`
21-
So for our example ISBN this means:
22-
(3 * 10 + 5 * 9 + 9 * 8 + 8 * 7 + 2 * 6 + 1 * 5 + 5 * 4 + 0 * 3 + 8 * 2 + 8 * 1) mod 11 = 0
28+
The program should be able to verify ISBN-10 both with and without separating dashes.
2329

24-
Which proves that the ISBN is valid.
2530

2631
## Caveats
2732

28-
Converting from string to number can be tricky in certain languages.
29-
It's getting even trickier since the check-digit of an ISBN-10 can be 'X'.
33+
Converting from strings to numbers can be tricky in certain languages.
34+
Now, it's even trickier since the check digit of an ISBN-10 may be 'X' (representing '10'). For instance `3-598-21507-X` is a valid ISBN-10.
3035

3136
## Bonus tasks
3237

33-
* Generate a valid ISBN-13 from the input ISBN-10 (and maybe verify it again with a derived verifier)
38+
* Generate a valid ISBN-13 from the input ISBN-10 (and maybe verify it again with a derived verifier).
3439

35-
* Generate valid ISBN, maybe even from a given starting ISBN
40+
* Generate valid ISBN, maybe even from a given starting ISBN.

0 commit comments

Comments
 (0)