document.write( "Question 263246: How do I start to solve this problem? I have tried to solve but I am so confused.\r
\n" );
document.write( "\n" );
document.write( "ACTIVITY 1: ISBNS AND THE CHECK DIGIT (20 points)\r
\n" );
document.write( "\n" );
document.write( "Each activity in this text is designed to either enhance your understanding of the topics of the preceding chapter, provide you with a mathematical extension of those topics, or both. The activities can be undertaken by one student, but they are better suited for a small group project. Occasionally it is only through discussion that different facets of the activity become apparent. For material related to this activity, visit the text website at www.mhhe.com/streeter. Have you ever noticed the long number, usually accompanied by a bar code, that can be found on the back of a book? This is called the International Standard Book Number (ISBN). Each book has a unique ISBN, which is 10 digits in length. The most common form for an ISBN is X-XX-XXXXXX-X. Each ISBN has four blocks of digits. \r
\n" );
document.write( "\n" );
document.write( "• The first block of digits on the left represents the language of the book (0 is used to represent
\n" );
document.write( "English). This block is usually one digit in length.
\n" );
document.write( "• The second block of digits represents the publisher. This block is usually two or three
\n" );
document.write( "digits in length.
\n" );
document.write( "• The third block of digits represents the number assigned to the book by the publishing
\n" );
document.write( "company. This is usually five or six digits in length.
\n" );
document.write( "• The fourth block consists of the check digit.\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "For the purposes of this document, we will consider the ISBN 0-07-229654-2.
\n" );
document.write( "The digit of most interest is the final digit, the check digit. When an ISBN is entered
\n" );
document.write( "into a computer, the computer looks at the check digit to make certain that the numbers
\n" );
document.write( "were properly entered. We will look at the algorithm used to generate the check digit.\r
\n" );
document.write( "\n" );
document.write( "Activity
\n" );
document.write( "I. To determine the check digit for the ISBN of a text, follow these steps.\r
\n" );
document.write( "\n" );
document.write( "1. Multiply each of the nine assigned digits by a weighted value. The weighted values
\n" );
document.write( "are 1 for the first digit from the left, 2 for the second digit, 3 for third digit, etc. In our
\n" );
document.write( "case, we have\r
\n" );
document.write( "\n" );
document.write( "1 • 0 + 2 • 0 + 3 • 7 + 4 • 2 + 5 • 2 + 6 • 9 + 7 • 6 + 8 • 5 + 9 • 4 = 211\r
\n" );
document.write( "\n" );
document.write( "2. In mathematics, we occasionally are interested in only the remainder after we do
\n" );
document.write( "division. We refer to the remainder as the modular (or mod) of the divisor. The ISBN
\n" );
document.write( "uses (mod 11) to determine the check digit.\r
\n" );
document.write( "\n" );
document.write( "211 ÷ 11 = 19 with a remainder of 2. We say 211 = 2 (mod 11)
\n" );
document.write( "That is how we get the 2 in the ISBN 0-07-229654-2.\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "II. If we are given an ISBN and we want to check its validity, we can follow a similar
\n" );
document.write( "algorithm.\r
\n" );
document.write( "\n" );
document.write( "1. Multiply each of the 10 digits by a weighted value. The weighted values are still 1 for
\n" );
document.write( "the first digit from the left, 2 for the second digit, etc., but we also multiply 10 times
\n" );
document.write( "the tenth (check) digit.
\n" );
document.write( "In our case, we now have\r
\n" );
document.write( "\n" );
document.write( "1 • 0 + 2 • 0 + 3 • 7 + 4 • 2 + 5 • 2 + 6 • 9 + 7 • 6 + 8 • 5 + 9 • 4 + 10 • 2 = 231\r
\n" );
document.write( "\n" );
document.write( "2. For any valid ISBN, the result will have a remainder of zero when divided by 11. In
\n" );
document.write( "other words, we will have 0 (mod 11). Note that 231 ÷ 11 = 21.\r
\n" );
document.write( "\n" );
document.write( "Determine whether each of the following is a valid ISBN.\r
\n" );
document.write( "\n" );
document.write( "0-07-038023-6
\n" );
document.write( "0-15-249584-2
\n" );
document.write( "0-553-34948-1
\n" );
document.write( "0-07-000317-3\r
\n" );
document.write( "\n" );
document.write( "For those numbers above that are valid, go on-line and find the books to which they refer. \n" );
document.write( "
Algebra.Com's Answer #194012 by mducky2(62)![]() ![]() ![]() You can put this solution on YOUR website! This looks complicated, but it's actually pretty simple. You just want to figure out which of the 4 IBSNs are valid. There are 2 ways to figure out whether an ISBN is valid, and you can use either one. \n" ); document.write( "First Strategy \n" ); document.write( "Let's use the first strategy with 0-07-038023-6. Except for the last digit, we're supposed to multiply all the numbers with their place in the ISBN, then add these answers up to a grand total. The 1st number is 0, the 2nd number is 0, the 3rd number is 7, and so on. \n" ); document.write( "So, for the first three numbers, we'd get 1*0, 2*0, and 3*7. To do that for all the numbers looks like this: \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "Now we're supposed to divide that number by 11, and look at the remainder. Let's divide 127 by 11. \n" ); document.write( " \n" ); document.write( "That means the remainder is 6 . Looking at the original ISBN, 0-07-038023-6, we see that the last number is 6. That means that the ISBN is valid! \n" ); document.write( "Second Strategy \n" ); document.write( "Let's use the second strategy with 0-15-249584-2. Including the last digit, we're supposed to multiply all the numbers with their place in the ISBN, then add everything to a grand total. It's basically the first strategy, plus the last digit times 10. \n" ); document.write( " \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "Now we're supposed to divide that number by 11. If it's a valid number, it shouldn't have any remainder. \n" ); document.write( " \n" ); document.write( "Hmm. There is a remainder. It looks like this one isn't valid. \n" ); document.write( "That should help you get started. You can use either one of these strategies for the last two numbers, 0-553-34948-1 and 0-07-000317-3. Let me know if you need more help with the last two problems. \n" ); document.write( " |