Theory of Computation: Turing Machines?

im trying to design a turing machine that satisfies 0^(2n)1^(n) where n >= 0.
so an example of a string accepted by this turing machine would be 000000111
can anybody help me out?

im trying to design a turing machine that satisfies 0^(2n)1^(n) where n >= 0.
so an example of a string accepted by this turing machine would be 000000111
can anybody help me out?
Your textbook or lecture notes will probably have an example Turing Machine that recognizes 0^n1^n; it’s a standard example. The core idea in that machine is that after you check the formatting of the string (0s then 1s) you scan back and forth, crossing off a 1 for each 0, and see if it all comes out even.
0^(2n)1^n is just like this, except that you want to cross of a 1 for every *two* 0s. Try to modify the algorithm in the book to do this instead; and think about what happens if, when looking for a pair of 0s, you find only one 0 and the next symbol isn’t a 0.