-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathchemistry.bigb
1955 lines (1451 loc) · 52.1 KB
/
chemistry.bigb
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
= Chemistry
{wiki}
Chemistry is fun. Too hard for precise <physics> (pre <quantum computing>, see also <quantum chemistry>), but not too hard for some maths like <social sciences>.
And it underpins <biology>.
\Video[https://www.youtube.com/watch?v=oSBM2SXlGC]
{title=100 Greatest Discoveries - Chemistry by the Discovery Channel (2005)}
{description=Pretty good within what you can expect from <popular science>. The discovery selection is solid, and he interviews 3 <Nobel Prize> laureates, only one about stuff they invented, so you can see their faces. The short non-precise scenes of epoch are also pleasing. Part of <100 Greatest Discoveries by the Discovery Channel (2004-2005)>.}
= Atom
{parent=Chemistry}
{tag=1926 Nobel Prize in Physics}
{wiki}
= Atomic theory
{synonym}
Theory that atoms exist, i.e. matter is not continuous.
Much before atoms were thought to be "experimentally real", chemists from the 19th century already used "conceptual atoms" as units for the proportions observed in macroscopic chemical reactions, e.g. $2 H_2 + O_2 \leftrightarrow H_{2}O$. The thing is, there was still the possibility that those proportions were made up of something continuous that for some reason could only combine in the given proportions, so the atoms could only be strictly consider calculatory devices pending further evidence.
<Subtle is the Lord by Abraham Pais (1982)> chapter 5 "The reality of molecules" has some good mentions. Notably, physicists generally came to believe in atoms earlier than chemists, because the phenomena they were most interested in, e.g. pressure in the <ideal gas law>, and then <Maxwell-Boltzmann statistics> just scream atoms more loudly than chemical reactions, as they saw that these phenomena could be explained to some degree by traditional mechanics of little balls.
Confusion around the probabilistic nature of the <second law of thermodynamics> was also used as a physical counterargument by some. Pais mentions that <Wilhelm Ostwald> notably argued that the <time reversibility of classical mechanics> + the second law being a fundamental law of physics (and not just probabilistic, which is the correct hypothesis as we now understand) must imply that atoms are not classic billiard balls, otherwise the second law could be broken.
Pais also mentions that a big "chemical" breakthrough was <isomers suggest that atoms exist>.
Very direct evidence evidence:
* <Brownian motion> mathematical analysis in 1908. Brownian motion just makes it too clear that liquids cannot be continuous... if they were, there would obviously be no <Brownian motion>, full stop.
* <X-ray crystallography>: it \i[sees] crystal latices
* <scanning tunnelling microscope>: it \i[sees] individual atoms for Christ's sake, what else do you want?
\Image[https://upload.wikimedia.org/wikipedia/en/3/37/A_Boy_and_His_Atom_%28still%29.jpg]
{title=Still from https://en.wikipedia.org/wiki/A_Boy_and_His_Atom[A boy and his atom] by <IBM>}
{source=https://en.wikipedia.org/wiki/File:A_Boy_and_His_Atom_(still).jpg}
Less direct evidence:
* 1874 <Isomers suggest that atoms exist>
* <kinetic theory of gases> seems to explain certain phenomena really well
<Subtle is the Lord by Abraham Pais (1982)> page 40 mentions several methods that <Einstein> used to "prove" that atoms were real. Perhaps the greatest argument of all is that several unrelated methods give the same estimates of atom size/mass:
* from 1905:
* in light quantum paper
* enabled by experimental work of https://en.wikipedia.org/wiki/Wilhelm_Pfeffer[Wilhelm Pfeffer] on producing rigid membranes
* sugar molecules in water
* <Brownian motion>: <investigations on the theory of the Brownian movement by Einstein (1905)>
* 1911: blueness of the sky and critical opalescence
= History of the atomic theory
{parent=Atom}
= Les Atomes by Jean Perrin (1913)
{parent=History of the atomic theory}
{tag=Work by Jean Perrin}
<Subtle is the Lord by Abraham Pais (1982)> mentions that this has a good summary of the <atomic theory evidence> that was present at the time, and which had become basically indisputable at or soon after that date.
On <Wikimedia Commons> since it is now <public domain> in most countries: https://commons.wikimedia.org/w/index.php?title=File:Perrin,_Jean_-_Les_Atomes,_F%C3%A9lix_Alcan,_1913.djvu
An <English (language)> translation from 1916 by <English> chemist https://en.wikipedia.org/wiki/Dalziel_Hammick[Dalziel Llewellyn Hammick] on the <Internet Archive>, also on the public domain: https://archive.org/details/atoms00hammgoog
= Atomic theory evidence
{parent=Atom}
= Isomers suggest that atoms exist
{parent=Atomic theory evidence}
{title2=1874}
{wiki}
<Subtle is the Lord by Abraham Pais (1982)> page 85:
\Q[However, it became increasingly difficult in chemical circles to deny the reality of molecules after 1874, the year in which Jacobus Henricus van't Hoff and Joseph Achille Le Bel independently explained the <isomerism> of certain organic substances in terms of <stereochemical> properties of carbon compounds.]
so it is quite cool to see that <organic chemistry> is one of the things that pushed atomic theory forward. Because when you start to observe that <isomers> has different characteristics, despite identical proportions of atoms, this is really hard to explain without talking about the relative positions of the atoms within molecules!
TODO: is there anything even more precise that points to atoms in stereoisomers besides just the "two isomers with different properties" thing?
= Brownian motion
{c}
{parent=Atomic theory evidence}
{title2=1785 or 1827}
{wiki}
Small microscopic visible particles move randomly around in water.
If water were continuous, this shouldn't happen. Therefore this serves as one important evidence of <atomic theory>.
The amount it moves also quantitatively matches with the expected properties of water and the floating particles, was was settled in 1905 by <Einstein> at: <investigations on the theory of the Brownian movement by Einstein (1905)>.
This suggestion that Brownian motion comes from the movement of atoms had been made much before Einstein however, and passed tortuous discussions. <Subtle is the Lord by Abraham Pais (1982)> page 93 explains it well. There had already been infinite discussion on possible causes of those movements besides <atomic theory>, and many ideas were rejected as incompatible with observations:
\Q[Further investigations eliminated such causes as temperature gradients, mechanical disturbances, capillary actions, irradiation of the liquid (as long as the resulting temperature increase can be neglected), and the presence of convection currents within the liquid.]
The first suggestions of atomic theory were from the 1860s.
Tiny uniform plastic beads called "microbeads" are the preferred 2019 modern method of doing this: https://en.wikipedia.org/wiki/Microbead
Original well known observation in 1827 by Brown, with further experiments and interpretation in 1908 by <Jean Baptiste Perrin>. Possible precursor observation in 1785 by https://en.wikipedia.org/wiki/Jan_Ingenhousz[Jan Ingenhousz], not sure why he wasn't credited better.
\Video[http://youtube.com/watch?v=UUSL0NqcY6k]
{title=Observing Brownian motion of micro beads by Forrest Charnock (2016)}
= Ion
{parent=Atom}
{wiki}
= Mole
{disambiguate=unit}
{parent=Atom}
{wiki}
= Mole
{synonym}
= Model of the atom
{parent=Atom}
= Bohr model
{c}
{parent=Model of the atom}
{title2=1913}
{wiki}
Was the first model to explain the <Balmer series>, notably linking atomic spectra to the <Planck constant> and therefore to other initial <quantum mechanical> observations.
This was one of the first major models that just said:
\Q[I give up, I can't tie this to <classical physics> in any way, let's just roll with it, OK?]
It still treats <electrons> as little points spinning around the nucleus, but it makes the non-<classical physics>[classical] postulate that only certain angular momentums (and therefore energies) are allowed.
Bibliography:
* <Inward Bound by Abraham Pais (1988)> Chapter 9.e Atomic structure and spectral lines - Niels Bohr
* <The Quantum Story by Jim Baggott (2011)> Chapter 3 A Little Bit of Reality
= Quantum jump
{parent=Bohr model}
{wiki}
Bagic jump between orbitals in the <Bohr model>. Analogous to the later <wave function collapse> in the <Schrödinger equation>.
<Causality and quantum jumps are incompatible>.
= Bohr-Sommerfeld model
{c}
{parent=Bohr model}
{title2=1916}
{wiki}
Refinement of the <Bohr model> that starts to take quantum <angular momentum> into account in order to explain missing lines that would have been otherwise observed TODO specific example of such line.
They are not observe because they would violate the conservation of angular momentum.
Introduces the <azimuthal quantum number> and <magnetic quantum number>.
TODO confirm year and paper, Wikipedia points to: https://zenodo.org/record/1424309#.yotqe3xmjhe[]
= Analytical chemistry
{parent=Chemistry}
{wiki}
= Gas chromatography
{parent=Analytical chemistry}
{title2=GC}
{wiki}
This technique is crazy! It allows to both:
* separate gaseous mixtures
* identify gaseous compounds
You actually see discrete peaks at different minute counts on the other end.
It is based on how much the gas interacts with the column.
Detection is usually done burning the sample to ionize it when it comes out, and then you measure the current produced.
The procedure remind you a bit of <gel electrophoresis>, except that it is in gaseous phase.
\Video[https://www.youtube.com/watch?v=UycPljfrnWo]
{title=<Gas chromatography> by Quick Biochemistry Basics (2019)}
\Video[https://www.youtube.com/watch?v=A8rX7zxyu_c]
{title=How I invented the electron capture detector interview with James Lovelock by Web of Stories (2001)}
{description=He mentions how scientists had to make their own tools during the 40s/60s. Then how <gas chromatography> was invented at the <National Institute for Medical Research> and gained a <Nobel Prize>. Lovelock came in improving the detection part of things.}
= Gas chromatography etymology
{parent=Gas chromatography}
= Why is gas chromatography called "chromatography"?
{synonym}
{title2}
The name makes absolutely no sense in modern terms, as nor colors nor light are used directly in the measurements. It is purely historical.
https://www.chromatographytoday.com/news/gc-mdgc/32/breaking-news/why-is-chromatography-called-chromatography/31178
= Analyte
{parent=Analytical chemistry}
{wiki}
= Analytical chemistry method
{parent=Analytical chemistry}
= Ion selective electrode
{parent=Analytical chemistry method}
{title2}
{wiki}
An <ion selective electrode> is tool used in <analytical chemistry> used to determine the concentration of a given <ion> in a solution.
The method can determine the concentration of one ion even if there are multiple different types of <ion> in the solution, although in some cases this can alter the results. This is done with the help of a selective membrane that only allows certain ions through.
One cool example application mentioned on <libretexts>https://chem.libretexts.org/Bookshelves/Analytical_Chemistry/Physical_Methods_in_Chemistry_and_Nano_Science_(Barron)/01%3A_Elemental_Analysis/1.07%3A_Ion_Selective_Electrode_Analysis{ref} is the measurement of <fluorine> concentration in water. They explain that <fluorine> is added to the drinking water supply in some countries to help protect people's teeth, and so you want to be able to measure as part of quality control to make sure it is being added in correct the quantities.
The method requires calibrating with calibrating solutions which takes one hour, but once you are calibrated you just stick the sensor into the <analyte> and get readings in a minute without any expendables. The membrane seems to be a bit fragile which requires care, but overall it looks like a convenient method.
\Image[https://upload.wikimedia.org/wikipedia/commons/9/95/General_ISE_Set-Up.png]
{title=<Ion selective electrode> schematic}
{height=600}
\Image[https://web.archive.org/web/20220605032719im_/https://files.mtstatic.com/site_4334/142875/0?Expires=1654403194&Signature=aAPjJy6lmj0OVoTs6TFibKDDW1XlYFMdZp9qCdNChcca6NCOaHHQqFu1oH9gzt6Dwe2YZMW1WdaPkvN8kAoW29qoXQ-ExXs9XeIA0AhtuQSO3GvNXaiVISse2zEWtHB2wYz5KRggWJ6qHk34z8Jti8w5V0Qwqg6hK6RHt5AmGkw_&Key-Pair-Id=APKAJ5Y6AV4GI7A555NA]
{title=Sample calibration curve for an <ion selective electrode>}
{description=The curve is simple and log linear, so once you have that it is easy to fit new measurements to the curve.}
{height=600}
{source=https://chem.libretexts.org/Bookshelves/Analytical_Chemistry/Physical_Methods_in_Chemistry_and_Nano_Science_(Barron)/01%3A_Elemental_Analysis/1.07%3A_Ion_Selective_Electrode_Analysis}
\Video[https://www.youtube.com/watch?v=bGO_GvpVwVU]
{title=General Principles of Ion Selective Electrodes by Jacob Stewart}
\Video[https://www.youtube.com/watch?v=5NREQwnaGcE]
{title=<Ion Selective Electrodes> Tech Tips by Vernier}
{description=
The plump <Asian American> lady with a <PhD> explains how to use the thing.
It seems like a proprietary training video given with the product that this Peruvian university decided to upload to <YouTube>. Heroes.
}
\Video[https://www.youtube.com/watch?v=NHByG4g5-RE]
{title=Using an Ion Selective Electrode by <University of Alberta>}
Bibliography:
* https://chem.libretexts.org/Bookshelves/Analytical_Chemistry/Physical_Methods_in_Chemistry_and_Nano_Science_(Barron)/01%3A_Elemental_Analysis/1.07%3A_Ion_Selective_Electrode_Analysis
= Separation process
{parent=Analytical chemistry method}
{wiki}
= Chemist
{parent=Chemistry}
{wiki}
= Alfred Nobel
{c}
{parent=Chemist}
{wiki}
= Joseph Priestley
{c}
{parent=Chemist}
{tag=Notable private tutor}
{title2=1733-1804}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/2/20/Joseph_Priestley.jpeg]
{title=Joseph Priestley in 1801}
= Johann Joseph Loschmidt
{c}
{parent=Chemist}
{wiki}
= Linus Pauling
{c}
{parent=Chemist}
{tag=1954 Nobel Prize in Chemistry}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/5/53/Linus_Pauling_in_the_1940s.jpg]
{title=<Linus Pauling> in the 1940s}
{height=600}
\Video[https://www.youtube.com/watch?v=xYVkJwVo__A]
{title=Why Linus Pauling was the Smartest Quack in History by MQTate}
\Video[https://www.youtube.com/watch?v=YBUGRh6WFyk]
{title=The Sad Decline of America's Greatest Chemist by MQTate}
= Wilhelm Ostwald
{c}
{parent=Chemist}
{tag=1908 Nobel Prize in Chemistry}
{wiki}
= Ostwald
{c}
{synonym}
= Chemical element
{parent=Chemistry}
{wiki}
= Abundance of the chemical elements
{parent=Chemical element}
{wiki}
= Abundance of the chemical elements on Earth
{parent=Abundance of the chemical elements}
{tag=Earth}
= Primordial nuclide
{parent=Abundance of the chemical elements on Earth}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/0/09/Elemental_abundances.svg]
{height=700}
= Discovery of chemical elements
{parent=Chemical element}
{wiki}
= Discovery of chemical elements bibliography
{parent=Discovery of chemical elements}
* https://www.periodictable.one/history/timeline
= Discovery Of The Elements by Mary Elvira Weeks
{parent=Discovery of chemical elements bibliography}
6th edition (1956) on the <Internet Archive>: https://archive.org/details/discoveryoftheel002045mbp
= Category of chemical element
{parent=Chemical element}
= Rare-earth element
{parent=Category of chemical element}
{wiki}
\Video[https://www.youtube.com/watch?v=4LiYdbNqkwg]
{title=The Secrets of the Super Elements}
{description=2019, by the <BBC>. Official page: https://www.bbc.co.uk/programmes/b08rv9r6[].}
= List of chemical elements
{parent=Chemical element}
= Hydrogen
{parent=List of chemical elements}
{title2=H}
{title2=1}
{wiki}
= Isotope of hydrogen
{parent=Hydrogen}
{wiki=Isotopes of hydrogen}
= Protium
{parent=Isotope of hydrogen}
{title2=\sup[1]H}
{title2=stable}
{title2=99.98%}
{wiki}
= Deuterium
{parent=Isotope of hydrogen}
{title2=\sup[2]H}
{title2=stable}
{title2=0.02%}
{wiki}
Applications:
* because it has an even number of <nucleons> it is transparent to <NMR>, and therefore is useful in solvents for <NMR spectroscopy>
= Heavy water
{parent=Deuterium}
{tag=Water}
{wiki}
<Cody'sLab> had a nice 5 video series on making it at home! But the <United States Government> asked him to take it down as suggested at <video What's Been Going On With Cody'sLab? by Cody'sLab (2019)> at https://youtu.be/x1mv0vwb08Y?t=84.
Here's a copy online as of 2020: https://www.youtube.com/watch?v=bCXB6BdMh9Y
= Semiheavy water
{parent=Heavy water}
{wiki}
= Girdler sulfide process
{c}
{parent=Heavy water}
{wiki}
= Tritium
{parent=Isotope of hydrogen}
{title2=\sup[3]H}
{title2=12 y}
{wiki}
Used in:
* <boosted fission weapon>
* <magnetic confinement fusion>
= Hydrogen compound
{parent=Hydrogen}
{tag=Chemical compound}
= Water
{parent=Hydrogen compound}
{tag=Chemical substance}
{tag=Oxygen compound}
{wiki}
"Water" is the name for both:
* the <chemical compound> with <#chemical formula> H\sub[2]O
* the <liquid phase> of the <chemical substance> composed of the above <chemical compound>
\Image[https://upload.wikimedia.org/wikipedia/commons/8/8a/2006-02-13_Drop_before_impact.jpg]
{title=<Water> in a glass}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Water-3D-balls-A.png/800px-Water-3D-balls-A.png]
{title=<Ball-and-stick model> of a <water molecule>}
{disambiguate=water}
\Image[https://upload.wikimedia.org/wikipedia/commons/3/33/Phase_diagram_of_water_simplified.svg]
{title=Simplified <phase diagram> of <water>}
{description=Note the <triple point> and <critical point (thermodynamics)> visible. <Phase diagrams> are so cool!}
{height=600}
\Image[https://upload.wikimedia.org/wikipedia/commons/0/08/Phase_diagram_of_water.svg]
{title=<Phase diagram> of <water>}
{description=Note all the obscure <phases of ice>.}
{height=600}
= Water molecule
{parent=Water}
{title2=$\text{H}_2\text{O}$}
\Image[https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Water-3D-balls-A.png/800px-Water-3D-balls-A.png]
{title=<Ball-and-stick model> of a <water molecule>}
= Phase of water
{parent=Water}
{wiki}
= Ice
{parent=Phase of water}
{wiki}
Ice is the name of one of the <solid phases> of <water>.
In informal contexts, it usually refers to the <phase of Ice> observed in <#atmospheric pressure>, <Ice Ih>.
= Phase of ice
{parent=Ice}
{wiki=Phases of ice}
= Phases of ice
{synonym}
= Ice I\sub[h]
{parent=Phase of ice}
= Snow
{parent=Ice}
{wiki}
= Helium
{parent=List of chemical elements}
{tag=Noble gas}
{title2=He}
{title2=2}
{wiki}
= Helium-3
{parent=Helium}
{wiki}
= Helium-4
{parent=Helium}
{wiki}
= Liquid helium
{parent=Helium}
{title2=4.2 K}
{wiki}
= Helium I
{synonym}
{title2}
4 K. Enough for to make "low temperature <superconductors>" like regular metals superconducting, e.g. the <superconducting temperature of aluminum> if 1.2 K.
Contrast with <liquid nitrogen>, which is much cheaper but only goes to 77K.
= Superfluid helium
{parent=Liquid helium}
= Superfluid helium-3
{parent=Superfluid helium}
{title2=observed 1972}
{tag=1996 Nobel Prize in Physics}
{wiki}
Surprisingly, it can also become a <superfluid> even though each atom is a <fermion>! This is because of <Cooper pair> formation, just like in <superconductors>, but the transition happens at lower temperatures than <superfluid helium-4>, which is a <boson>.
https://aps.org/publications/apsnews/202110/history.cfm[]: October 1972: Publication of Discovery of Superfluid Helium-3 contains comments on the seminal paper and a graph which we must steal.
= Superfluid helium-4
{parent=Superfluid helium}
{wiki}
= Helium II
{synonym}
{title2}
Also sometimes called <helium II>, in contrast to <helium I>, which is the non-<superfluid> <liquid helium> phase.
\Video[https://www.youtube.com/watch?v=unUNQNmuvUQ]
{title=<Superfluid Helium> Resonance Experiment by <Dietterich Labs> (2019)}
= Boron
{parent=List of chemical elements}
{title2=B}
{title2=5}
{wiki}
= Carbon
{parent=List of chemical elements}
{title2=C}
{title2=6}
{wiki}
= Carbon isotope
{parent=Carbon}
= Carbon-12
{parent=Carbon isotope}
{title2=stable}
{title2=99%}
{wiki}
= Carbon-13
{parent=Carbon isotope}
{title2=stable}
{title2=1%}
{wiki}
= Carbon-14
{parent=Carbon isotope}
{title2=5 ky}
{wiki}
= Radiocarbon dating
{parent=Carbon-14}
{wiki}
= Before Present
{c}
{parent=Radiocarbon dating}
{wiki}
= Carbon compound
{parent=Carbon}
{wiki}
= Allotrope of carbon
{parent=Carbon compound}
{tag=Allotrope of carbon}
{wiki=Allotropes_of_carbon}
= Allotropes of carbon
{synonym}
= Diamond
{parent=Allotrope of carbon}
{wiki}
= Fullerene
{parent=Allotrope of carbon}
{wiki}
\Video[https://www.youtube.com/watch?v=ljF5QhD5hnI]
{title=Buckyballs (C60) by <Periodic Videos> (2010)}
{description=
Actually shows them in a lab!
* https://youtu.be/ljF5QhD5hnI?t=167 has a photo of the first effective production method, which passes a large current between two carbon rods
* https://youtu.be/ljF5QhD5hnI?t=245 and forward cuts (their editing is very annoying) shows how fullerene dissolves in an organic solvent TODO name, sounds like thodium? and produces a violet solution, while <graphite> doesn't. A https://en.wikipedia.org/wiki/Ultrasonic_cleaning[Ultrasonic bath] is needed for the solution to form however.
* https://youtu.be/ljF5QhD5hnI?t=501 fullerene is not a good lubricant despite being a little ball, because it is reactive and polymerises under pressure
}
= Endohedral fullerene
{parent=Fullerene}
{wiki}
\Video[https://www.youtube.com/watch?v=fFESP1Se1To]
{title=Endohedral Fullerenes by Dom Burges (2016)}
= Graphite
{parent=Allotrope of carbon}
{wiki}
The layered one.
= Nuclear graphite
{parent=Graphite}
{tag=Neutron moderator}
{wiki}
= Graphene
{parent=Graphite}
{wiki}
A single layer of <graphite>.
= Carbonate
{parent=Carbon compound}
{title2=$CO_3^{2-}$}
{wiki}
= Calcium carbonate
{parent=Carbonate}
{title2=$CaCO_3$}
{wiki}
= Calcium carbonate polymorph
{parent=Calcium carbonate}
= Calcite
{parent=Calcium carbonate polymorph}
{wiki}
= Aragonite
{parent=Calcium carbonate polymorph}
{title2=1797}
{wiki}
= Vaterite
{parent=Calcium carbonate polymorph}
{wiki}
= Nitrogen
{parent=List of chemical elements}
{title2=N}
{title2=7}
{wiki}
= Liquid nitrogen
{parent=Nitrogen}
{wiki}
77K. Low enough for "high temperature <superconductors>" such as <yttrium barium copper oxide>, but for "low temperature superconductors", you need to go much lower, typically with <liquid helium>, which is likely much more expensive. TODO by how much?
\Video[https://www.youtube.com/watch?v=PEgm5NFXlFM]
{title=Where Do You Get Liquid Nitrogen? by The King of Random (2016)}
{description=He just goes to a medical gases shop in a local <industrial> estate and buys 20L for 95 dollars and brings it back on his own <Dewar> marked 35LD.}
\Video[https://www.youtube.com/watch?v=dCXkaQa53QQ]
{title=Making Liquid Nitrogen From Scratch! by <Veritasium> (2019)}
{description="From scratch" is perhaps a bit <clickbaity>, but I'll take it.}
= Nitrogen compound
{parent=Nitrogen}
= Ammonium
{parent=Nitrogen compound}
{wiki}
= Oxygen
{parent=List of chemical elements}
{title2=O}
{title2=8}
{wiki}
= Oxygen compound
{parent=Oxygen}
{tag=Chemical compound}
= Quartz
{parent=Oxygen compound}
{title2=$SiO_2$}
{wiki}
<Piezoelectric>, and notably used in <quartz clock>.
= Fluorine
{parent=List of chemical elements}
{title2=F}
{title2=9}
{wiki}
\Image[https://upload.wikimedia.org/wikipedia/commons/2/2c/Fluoro_liquido_a_-196%C2%B0C_1.jpg]
{title=Liquid $F_2$}
{description=The boiling temperature is 85.03 K, so the liquid in this photo is very cold.}
= Fluorine compound
{parent=Fluorine}
= Neon
{parent=List of chemical elements}
{tag=Noble gas}
{title2=Ne}
{title2=10}
{wiki}
= Sodium
{parent=List of chemical elements}
{title2=Na}
{title2=11}
{wiki}
= Sodium chloride
{parent=Sodium}
{title2=NaCl}
{wiki}
= Aluminium
{parent=List of chemical elements}
{title2=Al}
{title2=13}
{wiki}
= Superconducting temperature of aluminum
{parent=aluminium}
{title2=1.2 kelvin}
= Silicon
{parent=List of chemical elements}
{title2=Si}
{title2=14}
{wiki}
= Phosphorus
{parent=List of chemical elements}
{title2=P}
{title2=15}
{title2=3s2 3d3}
{wiki}
= Why phosphorus has multiple valencies?
{parent=Phosphorus}
https://www.quora.com/Why-does-phosphorous-have-a-valency-of-3-and-5
= Phosphate
{parent=Phosphorus}
{title2=$PO_4^{3-}$}
{wiki}
= Sulfur
{parent=List of chemical elements}
{title2=S}
{title2=16}
{wiki}
= Sulfur compound
{parent=Sulfur}
= Sulfur hydrade
{parent=Sulfur compound}
{title2=$H_2O$}
{wiki}
\Video[https://www.youtube.com/watch?v=GRBTQcrObdk]
{title=Danger $H_2S$ by Bayway Refinery}
{description=
TODO year.
* https://youtu.be/GRBTQcrObdk?t=462 scientist exposes a <rat> to the gas, watches the rat faint, and then revives the rat with manual resuscitation. OMG.
}
= Argon
{parent=List of chemical elements}
{tag=Noble gas}
{title2=Ar}
{title2=18}
{wiki}
= Argon is abundant on Earth's atmosphere because it comes from the decay of Potassium-40
{parent=Argon}
And notably, it is almost all <Argon-40>, which is stable, but not the most common one to come from natural <#nucleosynthesis>.
= K-Ar dating
{c}
{parent=Argon is abundant on Earth's atmosphere because it comes from the decay of Potassium-40}
{title2=dates rock crystalization time}
{wiki=K-Ar dating}
= Argon isotope
{parent=Argon}
{wiki=Isotopes_of_argon}
= Argon-40
{parent=Argon isotope}
= Potassium
{parent=List of chemical elements}
{title2=K}
{title2=19}
{title2=$4s^{1}$}
{wiki}
= Calcium
{parent=List of chemical elements}
{title2=Ca}
{title2=20}
{title2=$4s^{2}$}
{wiki}
= Titanium
{parent=List of chemical elements}
{title2=Ti}
{title2=22}
{wiki}
= Titanium compound
{parent=Titanium}
= Niobium-Titanium
{parent=Titanium compound}
{tag=Niobium compound}
= Nb-Ti
{synonym}
{title2}
= Chromium
{parent=List of chemical elements}
{title2=Cr}
{title2=24}
{wiki}
= Iron
{parent=List of chemical elements}
{title2=Fe}
{title2=26}
{wiki}
= Fe-C
{parent=Iron}
{tag=Alloy}
An alloy of <iron> and <carbon>. Because such allys have had such incredible historical importance due to their different properties, different <phases> of <Fe-C> have well known names such as <steel>
\Image[https://upload.wikimedia.org/wikipedia/commons/8/8a/Iron_carbon_phase_diagram.svg]
{title=<Temperature> vs <Carbon>% <phase diagram> of <Fe-C>}
= Steel
{parent=Iron}
{title2=Fe-C}
{wiki}
A <phase> of <Fe-C> characterized by the low ammount of <carbon>.
\Image[https://upload.wikimedia.org/wikipedia/commons/8/8a/Iron_carbon_phase_diagram.svg]
= Cobalt
{parent=List of chemical elements}
{title2=Co}
{title2=27}
{wiki}
= Cobalt isomer
{parent=Cobalt}
= Cobalt-60
{parent=Cobalt isomer}
{wiki}
= Copper
{parent=List of chemical elements}
{title2=Cu}
{title2=29}
{wiki}
= Copper compound
{parent=Copper}
= Gallium
{parent=List of chemical elements}
{title2=Ga}
{title2=31}
{wiki}
= Gallium compound
{parent=Gallium}
= Gallium arsenide
{parent=Gallium compound}
{tag=III-V semiconductor}
{tag=Arsenide compound}
{wiki}
This is apparently the most important <III-V semiconductor>, it seems to actually have some applications, see also: <gallium arsenide vs silicon>.
= Gallium arsenide vs silicon
{parent=Gallium arsenide}
Trying to use <gallium arsenide> was <Seymour Cray>'s fatal last flaw as mentioned at <The Supermen: The Story of Seymour Cray by Charles J. Murray (1997)>.
https://en.wikipedia.org/wiki/Gallium_arsenide#Comparison_with_silicon_for_electronics
<The Supermen: The Story of Seymour Cray by Charles J. Murray (1997)> page 4 mentions:
\Q[Cray wanted his new machine to employ circuits made from a material called gallium arsenide. Gallium arsenide had achieved limited success, particularly in satellite communications and military electronics. But no one had succeeded with it in anything so complicated as a computer. In the computer industry, engineers had developed a saying: "Gallium arsenide is the technology of the future," they would say. "And it always will be."]
= GaAs
{c}
{synonym}
{title2}
= Germanium
{parent=List of chemical elements}
{title2=Ge}
{title2=32}
{wiki}
= Arsenide
{parent=List of chemical elements}
{title2=As}
{title2=33}
{wiki}
= Arsenide compound
{parent=Arsenide}
= Selenium
{parent=List of chemical elements}
{title2=Se}
{title2=34}
{wiki}
= Bromine
{parent=List of chemical elements}
{title2=Br}
{title2=35}
{title2=4s2 4p5}
{wiki}
= Bromide
{parent=Bromine}
{title2=$Br^-$}
{wiki}
= Organic bromide compound
{parent=Bromide}
{tag=Organic compound}
= Ethidium bromide
{parent=Organic bromide compound}
{wiki}
= Niobium
{parent=List of chemical elements}
{title2=Nb}
{title2=41}
{wiki}
= Niobium compound
{parent=Niobium}
= Niobium-tin
{parent=Niobium}
{tag=Tin compound}
{wiki}
= $Nb_3Sn$
{synonym}
{title2}
= Nb-Sn
{synonym}
{title2}
Second most important superconducting material: <applications of superconductivity>.
= Silver
{parent=List of chemical elements}
{title2=Ag}
{title2=47}
{title2=4d10 5s1}
{wiki}
= Cadmium
{parent=List of chemical elements}
{title2=Ca}
{title2=48}
{wiki}
= Tin
{parent=List of chemical elements}
{title2=Sn}
{title2=50}
{title2=Stannum}
{wiki}
= Tin compound
{parent=Tin}
= Caesium
{parent=List of chemical elements}
{title2=Cs}
{title2=55}
{title2=$6s^1$}
{wiki}
= Cesium
{synonym}