ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
Way I did this:
2
1. Create a set of technologies, and base "progress level" which you can think of as a growth trajectory
3
2. Growth in each tech increases as a function of previous period + RAND()*RANDBETWEEN(0,1) - to introduce some random punctuated growth
4
3. If cumulative growth in all technologies raises the average to be > average of the period where everything started, a new technology automagically emerges!
5
6
7
Progress level0.200.510.811.011.021.231.431.391.581.671.792.022.022.172.272.362.272.492.552.762.892.863.063.29
8
Period/ Technologies12345678910111213141516171819202122232425
9
10.500.500.501.331.871.872.202.643.393.814.164.164.164.244.244.244.704.704.705.125.125.285.896.417.28
10
20.500.931.632.582.582.582.582.722.722.983.704.174.174.174.284.284.314.314.314.314.904.904.904.904.90
11
30.500.501.271.271.271.271.271.881.881.881.881.881.882.873.494.134.134.485.025.725.725.725.725.965.96
12
40.501.061.661.661.661.661.731.732.132.813.583.583.584.574.574.574.575.215.456.446.446.507.297.297.29
13
50.500.520.520.520.570.630.630.630.630.630.630.630.630.630.630.630.630.630.630.630.630.630.821.401.40
14
60.500.501.131.131.961.961.961.961.961.962.962.962.963.253.553.553.553.553.904.214.214.214.73
15
70.500.500.951.472.012.012.012.012.012.012.592.593.533.994.374.735.54
16
80.500.500.750.751.311.311.311.462.052.122.582.582.582.582.58
17
90.500.500.500.500.850.850.850.850.850.940.940.94
18
100.500.721.691.692.162.162.162.43
19
110.500.500.500.910.910.91
20
120.501.161.46
21
22
Therefore:
23
1. Assess average technological progress in each age - by definition indexed to 1st period
24
2. Growth rate according to this model declines over time - mostly because I've made the growth rate in tech linear. This isn't a philosophical point, I just didn't care to play formulae with google sheets that much.
25
26
Period/ Technologies
12345678910111213141516171819202122232425
27
Average0.500.701.011.311.511.521.731.931.892.082.172.292.522.522.672.772.862.772.993.053.263.393.363.563.79
28
Growth40.53%44.13%29.38%15.55%0.66%13.44%11.41%-2.00%10.31%4.24%5.72%9.74%0.19%5.68%3.83%3.17%-3.02%7.90%1.98%6.96%4.13%-1.07%5.87%6.49%
29
30
31
Number of technologies
566666667788899991010111111121212
32
Factorials1207207207207207207207205040504040320403204032036288036288036288036288036288003628800399168003991680039916800479001600479001600479001600
33
Combination of 210151515151515152121282828363636364545555555666666
34
Combination of 31020202020202020353556565684848484120120165165165220220220
35
36
37
Takeaways: how we reached Childhood's End
38
- If a new technology emerges when one reaches saturation, or the combined technological might of the rest reaches a certain threshold, there will be new emergences of technology
39
- Without enough ability to recombine though, the combinations to explore to find the new technology and its applications shoot past us
40
- Recombinations require someone to get on top of [X] number of fields, where [X] can vary according to the current state of technology
41
- This makes no mention of recombinations - where we effectively 'retire' older technologies when some others make enough progress that they're subsumed into others - e.g., natural philosophy
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100