Correct vs. Incorrect Algorithms

Learn the difference between correct and incorrect algorithms.

Comparison of correct and incorrect algorithms

We say that an algorithm is correct when it translates every input instance into the correct output. An algorithm is incorrect when there is at least one input instance for which the algorithm gives an incorrect output.

Consider the ChangeChange algorithm from the previous lesson.


 Change(money,c,d)Change(money, c, d):
 r \leftarrow moneymoney
 for kk from 11 to dd:
       ikrcki_{k}\leftarrow \lfloor{\frac{r}{c_{k}}}\rfloor
       rrckikr\leftarrow r - c_{k}\cdot i_{k}
return (i1(i_{1} ++ i2i_{2} ++ \ldots ++ id)i_{d})


ChangeChange is an incorrect algorithm! Suppose you were changing 40 cents into coins with denominations of c1=25c_{1} = 25, c2=20c_{2} = 20, c3=10c_{3} = 10 ...