I have some difficulties in understanging what's actually a unary halting problem
Few examples of unary languages are following:
$A=\{1^k\space |\space k\space is\space even\}$
$B=\{2^k\space |\space k\space is\space prime\}$
In other words unary language is a language of strings consisted of one symbol and encode the length.
Halting problem is just a description of Turing Machine and it's input, decide whether the given Turing Machine halts on the given input.
The following is the description of unary halting problem:
The unary halting problem is a special case of the halting problem, where a unary encoding is used for both the program and the input.
So far I haven't found any more formal definition of unary halting problem. For me it's not obvious how to encode halting problem into unary language.
I would appreciate for a formal definition or any explanation what's unary halting problem.
The halting problem is:
The description of $M$ and the input $i$ must be written somehow in symbols. You can always interpret these symbols as numerals. If there are $N$ possible symbols, you can interpret a sequence of symbols as a base-$N$ numeral. So you can rephrase the halting problem as:
But numbers can be represented in many ways, so we could take the number that represents some turing machine, and instead of writing it as a sequence of characters, or as a sequence of decimal digits, or as a sequence of bits, we could write it in unary format.
A turing machine can easily convert numbers between any of these formats, so the problem is the same.