L-systems are recursive symbol replacement systems:
- Start with a set of symbols.
- Replace each symbol with an ordered set of symbols, a unique set for each symbol.
- Repeat these last two steps indefinitely, using the new set of symbols.
is also allowed here if S does not appear on the right side of any rule. These languages are exactly all languages that can be decided by a finite state automaton. Additionally, this family of formal languages can be obtained by regular expressions. Regular languages are commonly used to define search patterns and the lexical structure of programming languages.
or

This one-dimensional pattern is fractal, but that's not obvious on inspection -- humans don't easily recognize the self-similar and discontinuous nature of the pattern. Human language is much richer (more possible sentences, more convoluted sentence structure) than this because it has more symbols (words) and rules. But if a system like this is extended to two dimensions (by allowing replacement rules to be 2x2 instead of nx1), the fractal patterns formed are more evident. Here's one of the simplest possible 2-symbol 2x2 systems:

which evolves like this:
...
which is more obviously a fractal (a right angle Serpinski gasket).
Human language sentences have a terminating symbol, and if they are diagrammed they have a similar fractal structure. They are usually terminated very early ("Sally went to the store."), because if too many rules are applied humans can't keep in working memory all the relationships ("Sally, my sister, went, after climbing the tall hill, to the bigger store at the bottom of the tall green hill.")
Human written language can be considered one-dimensional, but spoken/signed language can have other dimensions, like prosody and intonation.
"Ending a sentence with a preposition is something up with which I will not put."
Winston Churchill
At the beginning of the second meditation, having reached what he considers to be the ultimate level of doubt — his argument from the existence of a deceiving god — Descartes examines his beliefs to see if any has survived the doubt. In his belief in his own existence he finds it: it is impossible to doubt that he exists. Even if there were a deceiving god (or an evil demon, the tool he uses to stop himself sliding back into ungrounded beliefs), his belief in his own existence would be secure, for how could he be deceived unless he existed in order to be deceived?They may have been examples from one of Douglas Hofstadter's books; "Gödel, Escher, Bach: an Eternal Golden Braid" (GEB), which explores the meaning of recursion in math, visual art and music using stories that are recursively structured to make his point, "The Mind's I", whos title's two meanings are mutually self referential, or "I Am a Strange Loop" which he wrote in part because the point of GEB was misconstrued, and whose title is a strange loop, like Hofstadter believes himself and us to be.
Yoshiko Yamata wrote:
I believe, in Linguistics, the replacement rules are called Phrase Structure rules.
There are different versions of these PS rules (depending on the stages of the development of formal syntactic theory), but simples ones go like this:
S -> NP VP
NP -> ART N S
VP -> NP
An example of recursive application of these rules would be:
The dog chased the cat that ate the rat that bit the baby that slept in the crib that was made by the man who lived on the street ....
The above PS rules also allow sentences such as:
[The dog [that the cat [that the rat [that the baby hated] feared] bit] slept under the tree.]
I put the brackets for the ease of parsing. The last time when I sat in a formal syntax class, sentences like this were considered grammatical. I was told that they did not sound good ( or at least were nearly impossible to comprehend) because of our processing limitation (You can see how it is grammatical from a sentence with the same basic construction but with a fewer embedded sentences, e.g., "The dog that the cat bit slept under the tree.".), and I doubt that speakers of any language produce sentences like this.
I think this sentence is comparable to:
..... (I've gotten tired of making branches...)
/ / \ \
/ / /\ \ \
/ / / \ \ \
/ / / /\ \ \ \
/ / / / \ \ \ \
A A A A B B B B
I've seen some animal studies use this rule to study non-human's ability to learn recursive rules. I can't help wondering why they use this rule. Shouldn't non-human animals have some processing limitations (therefore, may not learn recursive rules based on input like this)? I'm not familiar iwth the literature, so I'm not sure if they are actually learning this recursive rule, but it would be pretty amazing if they are...
Also see Chompsky's kudzu , whos caption is a joke about this topic.
Comments
Post new comment