Problem Solving - an Illustration
Problem Solving - an Illustration M. Velrajan How to solve problems is illustrated with a simple, fascinating number game. Let S be a string of digits 0, 1, 2, . . . , 9 of length n and 1 ≤ m < n. Replace the m th and n th digits of S by m th digit + 1 and n th digit + 1, respectively, subject to 9 + 1 = 0 i.e. the addition is addition modulo 10 and interchange the first m and the remaining n - m digits to get the new string of length n. For example, suppose S = 03421678 and m = 6. Then S 034216 78 S1 79 0342 17 Repeat the above for the new string of digits. The problem is whether we get the same string S after a finite stage and if so, after which stage. Think how to solve this problem . . . . . . . . . Understand . . . . . . . . Yes, the operation given first increases only the m th and n th place digits of S by 1, of course 9 + 1 = 0 then interchanges the first m and the remaining n - m digits. Analyse Thi...