-
Notifications
You must be signed in to change notification settings - Fork 0
/
eugenic-beginnings.html
136 lines (120 loc) · 6.04 KB
/
eugenic-beginnings.html
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Francis Galton and the Origins of Eugenics</title>
<link rel="stylesheet" href="eugenic-beginnings.css">
<style>
/* Global Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Avenir', sans-serif;
font-size: 17px;
line-height: 1.6;
color: rgba(0, 31, 63, 0.85);
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 40px 20px;
color: #001f3f;
background-color: transparent;
}
h1 {
font-size: 2.5em;
margin: 0;
font-weight: 400;
}
.content-section {
max-width: 900px;
margin: 20px auto;
padding: 20px;
text-align: justify;
}
.content-section p {
margin-bottom: 15px; /* Spacing between paragraphs */
line-height: 1.8;
}
.image-centered {
text-align: center;
margin: 20px 0;
}
.eugenics-tree-image,
.kantsaywhere-image {
max-width: 100%;
height: auto;
border: 1px solid #001f3f;
border-radius: 5px;
margin: 10px auto;
display: block;
}
.image-caption {
font-size: 0.9em;
color: rgba(0, 31, 63, 0.7);
text-align: center;
margin-top: 5px;
}
footer {
text-align: center;
padding: 25px;
background-color: #f1f1f1;
color: rgba(0, 31, 63, 0.8);
font-size: 0.9em;
}
footer p {
margin: 0;
}
a {
color: rgba(0, 31, 63, 0.85);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #1e90ff;
}
</style>
</head>
<body>
<header>
<h1>Eugenic Beginnings and Galton's Legacy</h1>
</header>
<section class="content-section">
<p>
At the Second International Eugenics Congress in 1921, held at the American Museum of Natural History in New York, a striking symbol stood at the center of the event: the "Eugenics Tree." Its roots were labeled with disciplines like genetics, statistics, and sociology, while its branches stretched toward an imagined "harmonious entity." The tree’s design proclaimed a vision of humanity perfected through the scientific categorization and manipulation of populations. Yet, conspicuously absent from its roots was perhaps the most essential discipline: philosophy. Without philosophy to question the premises of categorization—to ask “why” before “how”—this symbolic tree leaned heavily on technical tools that simplified human complexity, treating populations as subjects to be molded rather than understood.
</p>
<div class="image-centered">
<img src="eugenics-tree.jpg" alt="Eugenics Tree" class="eugenics-tree-image">
<p class="image-caption">The Eugenics Tree, symbolizing the "self-direction of human evolution" at the Second International Eugenics Congress.</p>
</div>
<p>
The tree’s structure reflects the legacy of Francis Galton, the founder of eugenics and a pioneer in statistical methodologies. Galton wasn’t satisfied with merely studying variation; he sought to engineer it. Techniques like regression and correlation, which he helped develop, became more than methods for understanding patterns; they evolved into instruments for ranking traits and assigning value to groups. Intelligence, “fitness,” productivity—metrics that, while appearing scientific, were infused with Galton’s personal biases and societal prejudices.
</p>
<div class="image-centered">
<img src="kantsaywhere.png" alt="Page from Galton's Kantsaywhere Manuscript" class="kantsaywhere-image">
<p class="image-caption">A page from Galton's manuscript of <em>Kantsaywhere</em>, reflecting his ideas on "racial fitness."</p>
</div>
<p>
Galton’s unpublished utopian novel, <em>Kantsaywhere</em>, exposes the ethos behind his work. In this imagined society, strict hierarchies dictated who could reproduce, enforcing rigid ideas of worthiness. “They think much more of the race than the individual,” he wrote, reflecting his belief in collective categorizations over individual autonomy. This philosophy dehumanized people, reducing their value to statistical traits that fit a grand, calculated plan.
</p>
<p>
The tools Galton pioneered remain central to modern data analysis. Regression and correlation—originally devised to support his eugenic vision—are now fundamental to disciplines ranging from medicine to artificial intelligence. The methods have changed, but the premise of grouping individuals into aggregates persists, shaping how we interpret and act upon data.
</p>
<p>
The "Eugenics Tree" serves as a powerful reminder. While statistical methods are not inherently harmful, their application carries significant risks. When used uncritically, they can reinforce biases, erase individuality, and perpetuate systems of exclusion. Galton’s legacy highlights both the potential and the peril of these tools, urging us to scrutinize how and why we use them.
</p>
<p>
The following pages critically examine these methods, illustrating how their application in grouping people distorts science’s aims and reinforces harmful categorizations. <a href='magnetic-regression.html'>Continue reading: Magnetic Regression</a>.
</p>
</section>
<footer>
<p>© 2024 Colin Geraghty. All rights reserved.</p>
</footer>
</body>
</html>