-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
71 lines (67 loc) · 2.99 KB
/
about.html
File metadata and controls
71 lines (67 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cellular automaton</title>
<link rel="stylesheet" type="text/css" href="/CA/index.css">
<link rel="stylesheet" href="/CA/bootstrap.min.css">
<link rel="manifest" href="/CA/manifest.json">
<style>
:link {
color: rgb(172, 255, 0);
}
:visited {
color: rgba(175, 255, 47, 0.658);
}
</style>
</head>
<body style="overflow: auto;">
<nav class="navbar fixed-bottom navbar-dark bg-dark">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
</li class="nav-item">
<a href="/CA/index.html" class="nav-link active">Go back</a>
</li>
</ul>
</nav>
<center>
<h3 style="color:white;width:90%;">
<p>
This is an implementation of Cellular automaton, more specifically Elementary cellular automaton which despite consisting
of very simple rules is capable of very complex behavior
<a href="https://en.wikipedia.org/wiki/Rule_110">(it can even simulate any computer *Turing complete)</a>.
</p>
<p>
The simple rules are that the color (or on/off state) of a cell is determined by the color of three cells just above. The
rule in this site represent
<a href="https://en.wikipedia.org/wiki/Wolfram_code">Wolfram code</a> which is a number between 0 and 255. Which intern specifies which configurations of above
three cells will result in which color. the binary number(01111110) represent the color of a cell corresponding
to all the possible combination of above three cells.
</p>
<p>
And here is rule 126 for visualization.
</p>
<img src="/CA/imgs/rule30.svg" alt="rule30" />
<p>Change rule by inputting a number in the input area and clicking set or clicking random to set a random rule.
You can also change the rule by directly clicking the respective rule representation.
</p>
<p>Rather than trying to explain the intricacies of the topic and failing misrably at it I encourage you to go to
these resources for further understanding of the topic.</p>
</h3>
</center>
<ul style="color:white;">
Other resources
<li>
<a href="https://en.wikipedia.org/wiki/Elementary_cellular_automaton">Wikipedia page</a>
</li>
<li>
<a href="http://atlas.wolfram.com/01/01/">Analyse Elementary cellular automaton more</a>
</li>
<li>
<a href="http://mathworld.wolfram.com/CellularAutomaton.html">Wolfarm mathWorld page</a>
</li>
<li>
<a href="https://www.wolframscience.com/nks/">A free book about the topic and way more</a>
</li>
<li>
<a href="http://cubes.io/">A 3D version</a>
</li>
</ul>
</body>