On a 1D line there is one real number needed to uniquely locate a point by coordinates.
On a 2D plane, a pair of real numbers are needed.
But what if a fractal has dimension d, between 1 and 2 ($1<d<2$), how can points on the fractal be specified with more than one, but less than 2 coordinates?
Can you provide examples of 1.xD coordinates for points?
Edit: I'm asking for a numerical example, so this is not the same question tan this one.
A point in the plane can be specified by a single number in base 4 if each one of the symbols represents one quadrant
O=0
→=1
↑=i
↗=1+i
. is a decimal separator
a point with coordinates 1.5+2.5i can be written ↑→.↗ meaning (the dot is a decimal separator)
$\uparrow \rightarrow . \nearrow = i*2^1+1*2^0+(1+i)*2^{-1} $
That representation system can be rewritten as pair of numbers in decimal system.
On the same way, a point on sierpinski triangle can be written in base 3 using a symbol for each of the 3 subtriangles Any point on the fractal can be specified with arbitrary precision with a string like
←→↑←↑↑←←→.←↑←→←←↑
where each position is multiplied by a power of 2 and
←=0
→=1
↑=0.5+(3/4)^½i
. is a decimal separator
So, I expect that number to be decomposed into 1.D coordinates as a real number, and something else.
On information theory, a character may represent a non integer number of bits, and that is solved by combining multiple characters, so I expected a similar solution for expressing coordinates.
Note that on the real line, if base N is used, the characters are multiplied by power of 4, but on other dimensions, it looks like the dimension depend on the difference between the base N and the power used as positional weight.
You're confusing the topological dimension of an embedding with the intrinsic dimension. You need as many (integer) coordinates as the topological dimension.