This document contains examples of calculating the check digit for Universal Product Code (UPC) barcodes. It shows working through the check digit algorithm for 3 sample UPC codes where the check digit is a missing value. The algorithm involves: 1) Summing the digits in odd and even positions separately, 2) Multiplying the odd sum by 3 and adding it to the even sum, 3) Taking the result modulo 10, and 4) Subtracting this from 10 to find the check digit.
This document contains examples of calculating the check digit for Universal Product Code (UPC) barcodes. It shows working through the check digit algorithm for 3 sample UPC codes where the check digit is a missing value. The algorithm involves: 1) Summing the digits in odd and even positions separately, 2) Multiplying the odd sum by 3 and adding it to the even sum, 3) Taking the result modulo 10, and 4) Subtracting this from 10 to find the check digit.