I have a series of 5-digit number series with 4 numbers and and 5th digit is a Alphabetic check digit.

I have a sample of numbers. (about 58 samples)

Check digit is generated by

( (Digit 1 * Value 1) + (Digit 2 * Value 2) + (Digit 3 * Value 3) + (Digit 4 * Value 4) ) Mod 11

In order to find the 4 Values for this algorithm from the sample of numbers, What method to follow to get the values ?

I'm not interested in the values itself.

link|improve this question
1  
I'm not interested in doing your homework. – Poldie Mar 11 '11 at 9:46
Programming related, not algorithm related. – Will Mar 11 '11 at 14:35
feedback

closed as off topic by Will Mar 11 '11 at 14:35

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

Haha ... It's not my homework.

I managed to solve e values by using excel and modulus function in it. But I did it by entering random numbers for 4 digits and by luck I managed to get e 4 values.

They are correct when I cross checked with the samples.

Now I just want to know how to solve properly on paper ? If I don't want to use computer to solve.

Thanks

link|improve this answer
feedback

Given the nature of the modulo operation, what can you say about the size of the parameter space?

Unless you're working within severe system constraints, even a pretty naive brute force search should be able to run fast enough not to care.

Note that 58 samples is not guaranteed to provide a unique solution, although it probably will. If this is actually a homework exercise, it's very unlikely whoever set it would choose ambiguous data unless they want to make a point with it.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.