In the context of a Turing machine, the head is a component that can read from, write to, and traverse the tape.
The head is restricted to being stationed at exactly one tape cell at a time. That is, it cannot read or write a block of cells (more than one cell) at one time. Additionally, the head cannot "teleport" to a certain tape cell that is not immediately to the left or right of the tape cell it is currently stationed at. It can only move to the left or to the right by exactly one tape cell at a time.
As a device, the head can perform the following actions:
Read the current tape cell
Make the current tape cell blank
Move to the tape cell immediately to the right of the current one
Move to the tape cell immediately to the left of the current one
However, the head only accepts instructions that are in one of the following formats:
Read the current tape cell
Write a tally to the current tape cell and move to the tape cell immediately to the right of the current one
Write a tally to the current tape cell and move to the tape cell immediately to the left of the current one
Make the current tape cell blank and move to the tape cell immediately to the right of the current one
Make the current tape cell blank and move to the tape cell immediately to the left of the current one
The Turing machine will supply such instructions to the head as part of its operation.
Write a tally () to the current tape cell