While converting multitape turing machine into an equivalent singletape turing machine we have to shift the data and insert a blank to it. e.g :
Multitape = [1,2,3,4] [5,6,7,8] [9,10,11,12]
Equivalent singletape = [1,2,3,4,#,5,6,7,8,#,9,10,11,12]
consider this transition function in multitape turing machine :
[(q1,4) = (q2,4,R) and similar for others]
after this transition next element of tape1 is Blank But in single tape
[(q1,4) = (q2,4,R) and for others]
After this transition next element of tape1 is # so we have to shift remaining data to insert a blank at this position. How to do that? please give answers with respect to transition function.