- #1
Adel Makram
- 635
- 15
Hi,
Suppose I am given a sequence of special symbols and I want to produce the next sequence of symbols according to certain rules that transform one symbol into one or more symbols.
They are 10 symbols in total, say; A, B, C, D, E, F, G, H, I, J
The rules are:
A transformed into B and it is written as A -> B. Here are the rules:
A -> B
B -> C
C -> D E
D -> F C
F -> G A
G -> C
E -> H I
H -> J
I -> D
J -> D
The order matter so, D E is not the same as E D.
When given an initial sequence of symbols of a particular length (say 1000), how can I produce the next n-sequence of symbols using Excel?
I thought to represent each symbol with numbers using modular arithmetics or even complex numbers but not sure how far this will lead me. Prime factorization may not help because using the rules one or more symbols can be a prime and composite number at the same time.
Suppose I am given a sequence of special symbols and I want to produce the next sequence of symbols according to certain rules that transform one symbol into one or more symbols.
They are 10 symbols in total, say; A, B, C, D, E, F, G, H, I, J
The rules are:
A transformed into B and it is written as A -> B. Here are the rules:
A -> B
B -> C
C -> D E
D -> F C
F -> G A
G -> C
E -> H I
H -> J
I -> D
J -> D
The order matter so, D E is not the same as E D.
When given an initial sequence of symbols of a particular length (say 1000), how can I produce the next n-sequence of symbols using Excel?
I thought to represent each symbol with numbers using modular arithmetics or even complex numbers but not sure how far this will lead me. Prime factorization may not help because using the rules one or more symbols can be a prime and composite number at the same time.