-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPeriodicTable.json
More file actions
3373 lines (3373 loc) · 228 KB
/
PeriodicTable.json
File metadata and controls
3373 lines (3373 loc) · 228 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
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
[
{
"atomicNumber": 1,
"name": "Hydrogen",
"block": "s-block",
"atomicMass": "1.00784",
"symbol": "H",
"group": 1,
"discovered": "1766",
"appearance": "colorless and odorless",
"boilingPoint": "-252.879 ",
"meltingPoint": "-259.16 ",
"discoveredBy": "Henry Cavendish",
"density": "0.08988 g/L",
"category": "Other-non-metals",
"state": "gas",
"history": [
"Robert Boyle discovered and described the reaction between iron filings and dilute acids, which results in the production of hydrogen gas.In 1766, Henry Cavendish was the first to recognize hydrogen gas as a discrete substance, by naming the gas from a metal-acid reaction \"inflammable air\".",
"In 1783, Antoine Lavoisier gave the element the name hydrogen (from the Greek ὑδρο- hydro meaning \"water\" and -γενής genes meaning \"former\") when he and Laplace reproduced Cavendish's finding that water is produced when hydrogen is burned.",
"Hydrogen was liquefied for the first time by James Dewar in 1898 by using regenerative cooling and his invention, the vacuum flask."
],
"shells": [1],
"uses": [
"Hydrogen is consumed in refineries in a variety of hydro-desulfurisation (HDS) and hydrocracking operations.",
"Next to oil refineries, ammonia is currently the largest application of hydrogen.",
"Hydrogen is used commercially to extract tungsten from its ore.",
"The large-scale production of hydrochloric acid (HCl) is almost always integrated with the industrial scale production of other chemicals.",
"Food industries, for instance, use hydrogen to make hydrogenated vegetable oils such as margarine and butter."
],
"description": "Hydrogen is the chemical element with the symbol H and atomic number 1. With a standard atomic weight of 1.008, hydrogen is the lightest element in the periodic table. Hydrogen is the most abundant chemical substance in the universe, constituting roughly 75% of all baryonic mass."
},
{
"atomicNumber": 2,
"name": "Helium",
"block": "s-block",
"atomicMass": "4.0026",
"symbol": "He",
"group": 18,
"discovered": "1868",
"appearance": "colorless, odorless and inert",
"boilingPoint": "-268.928 ",
"meltingPoint": "-272.20 ",
"discoveredBy": "William Ramsay, Norman Lockyer, Pierre Janssen, Per Teodor Cleve",
"density": "0.1786 g/L",
"category": "Noble-gases",
"state": "gas",
"history": [
"The first evidence of helium was observed on August 18, 1868, as a bright yellow line with a wavelength of 587.49 nanometers in the spectrum of the chromosphere of the Sun.",
"In 1881, Italian physicist Luigi Palmieri detected helium on Earth for the first time through its D3 spectral line, when he analyzed a material that had been sublimated during a recent eruption of Mount Vesuvius.",
"On March 26, 1895, Scottish chemist Sir William Ramsay isolated helium on Earth by treating the mineral cleveite with mineral acids."
],
"shells": [2],
"uses": [
"Helium canisters are used within the medical industry for breathing observation.",
"One of helium’s many industrial uses is to prevent chemicals from causing explosions, and this can be very helpful in welding.",
"Helium is also used to inflate airbags as helium can diffuse quicker than most unreactive gases.",
"An artificial atmosphere is created using 20% oxygen and 80% helium to keep divers and others who work in pressurised conditions safe."
],
"description": "Helium is the first in the noble gas group in the periodic table and the second lightest and second most abundant element in the observable universe following Hydrogen. Its boiling point is the lowest among all the elements."
},
{
"atomicNumber": 3,
"name": "Lithium",
"block": "s-block",
"atomicMass": "6.941",
"symbol": "Li",
"group": 1,
"discovered": "1817",
"appearance": "silvery-white",
"boilingPoint": "1330 ",
"meltingPoint": "180.50 ",
"discoveredBy": "Johan August Arfwedson",
"density": "0.534 g/cm<sup>3</sup>",
"category": "Alkali-Metals",
"state": "solid",
"history": [
"Petalite (LiAlSi4O10) was discovered in 1800 by the Brazilian chemist and statesman José Bonifácio de Andrada e Silva in a mine on the island of Utö, Sweden.",
"However, it was not until 1817 that Johan August Arfwedson, then working in the laboratory of the chemist Jöns Jakob Berzelius, detected the presence of a new element while analyzing petalite ore.",
"Berzelius gave the alkaline material the name \"lithion/lithina\", from the Greek word λιθoς (transliterated as lithos, meaning \"stone\"), to reflect its discovery in a solid mineral."
],
"shells": [2, 1],
"uses": [
"The most important use of lithium is in rechargeable batteries for mobile phones, laptops, digital cameras and electric vehicles.",
"Lithium salts have proven to be useful as a mood-stabilizer and anti-depressant.",
"Lithium and its compounds have several industrial applications such as heat-resistant glass and ceramics, lithium grease lubricants.",
"Lithium oxide is widely used as a flux for processing silica, reducing the melting point and viscosity of the material."
],
"description": "Lithium is a soft, silvery-white alkali metal. Under standard conditions, it is the lightest metal and the lightest solid. lithium is highly reactive and flammable, and must be stored in vacuum, inert atmosphere or inert liquid."
},
{
"atomicNumber": 4,
"name": "Beryllium",
"block": "s-block",
"atomicMass": "9.0121",
"symbol": "Be",
"group": 2,
"discovered": "1798",
"appearance": "steel-gray",
"boilingPoint": "2469 ",
"meltingPoint": "1287 ",
"discoveredBy": "Louis-Nicolas Vauquelin",
"density": "1.85 g/cm<sup>3</sup>",
"category": "Alkaline-Earth-Metals",
"state": "solid",
"history": [
"In the first century CE, Roman naturalist Pliny the Elder mentioned in his encyclopedia 'Natural History' that beryl and emerald (\"smaragdus\") were similar.",
"Early analyses of emeralds and beryls by Martin Heinrich Klaproth, Torbern Olof Bergman, Franz Karl Achard, and Johann Jakob Bindheim always yielded similar elements, leading to the fallacious conclusion that both substances are aluminium silicates.",
"Friedrich Wöhler and Antoine Bussy independently isolated beryllium in 1828 by the chemical reaction of metallic potassium with beryllium chloride."
],
"shells": [2, 2],
"uses": [
"Beryllium alloys are used in making connectors, springs, switches, and other components of electrical devices.",
"Beryllium metal is used in the aerospace and defense industries to make lightweight precision instruments.",
"In nuclear reactors, beryllium metal and beryllium oxide are used to control fission reactions.",
"Beryllium has also been used in the trigger mechanisms for nuclear weapons."
],
"description": "Berylium is a steel-gray, strong, lightweight and brittle alkaline earth metal. It is a divalent element that occurs naturally only in combination with other elements to form minerals. It constitutes about 0.0004 percent by mass of Earth's crust."
},
{
"atomicNumber": 5,
"name": "Boron",
"block": "p-block",
"atomicMass": "10.811",
"symbol": "B",
"group": 13,
"discovered": "1808",
"appearance": "black-brown",
"boilingPoint": "3927 ",
"meltingPoint": "2076 ",
"discoveredBy": "Joseph Louis Gay-Lussac and Louis Jacques Thénard",
"density": "2.08 g/cm<sup>3</sup>",
"category": "Metalloids",
"state": "solid",
"history": [
"The word boron was coined from borax, the mineral from which it was isolated, by analogy with carbon, which boron resembles chemically.",
"Boron compounds were relatively rarely used until the late 1800s when Francis Marion Smith's Pacific Coast Borax Company first popularized and produced them in volume at low cost.",
"Boron was not recognized as an element until it was isolated by Sir Humphry Davy and by Joseph Louis Gay-Lussac and Louis Jacques Thénard.",
"Jöns Jacob Berzelius identified boron as an element in 1824. Pure boron was arguably first produced by the American chemist Ezekiel Weintraub in 1909."
],
"shells": [2, 3],
"uses": [
"Boron conducts electricity like a metal at high temperatures and is almost an insulator at low temperatures.",
"Limited quantities of elemental boron are widely used to increase hardness in steel.",
"Small, carefully controlled amounts of boron are added as a doping agent to silicon and germanium to modify electrical conductivity.",
"Boron is also used in the nonferrous-metals industry, generally as a deoxidizer."
],
"description": "Boron in its crystalline form it is a brittle, dark, lustrous metalloid; in its amorphous form it is a brown powder. It constitutes about 0.001 percent by weight of Earth's crust. Elemental boron is a metalloid that is found in small amounts in meteoroids but chemically uncombined boron is not otherwise found naturally on Earth."
},
{
"atomicNumber": 6,
"name": "Carbon",
"block": "p-block",
"atomicMass": "12.0107",
"symbol": "C",
"group": 14,
"discovered": "3750 BCE",
"appearance": "black, metallic",
"boilingPoint": "4.827 ",
"meltingPoint": "3.550 ",
"discoveredBy": "Ancient Egyptians",
"density": "2.26g/cm<sup>3</sup>",
"category": "Other-non-metals",
"state": "solid",
"history": [
"Carbon was discovered in prehistory and was known in the forms of soot and charcoal to the earliest human civilizations.",
"In 1772, Antoine Lavoisier showed that diamonds are a form of carbon",
" Carl Wilhelm Scheele showed that graphite was instead identical with charcoal but with a small admixture of iron, and that it gave \"aerial acid\"(CO2) when oxidized with nitric acid.",
"A new allotrope of carbon, fullerene, that was discovered in 1985 includes nanostructured forms such as buckyballs and nanotubes."
],
"shells": [2, 4],
"uses": [
"Amorphous carbon is used to make inks and paints. It is also used in batteries.",
"Graphite(an allotrope of carbon) is used as lead in pencils. It is also used in the production of steel.",
"One of the most important uses is carbon dating. We can use carbon to measure the age of substances.",
"Carbon in its diamond form is used in jewellery and for industrial purposes."
],
"description": "Carbon is the 15th most abundant element in the Earth's crust, and the fourth most abundant element in the universe by mass after hydrogen, helium, and oxygen. Carbon's abundance, its unique diversity, and its unusual ability to form polymers at the temperatures commonly encountered on Earth enables this element to serve as a common element of all known life."
},
{
"atomicNumber": 7,
"name": "Nitrogen",
"block": "p-block",
"atomicMass": "14.0067",
"symbol": "N",
"group": 15,
"discovered": "1772",
"appearance": "colorless",
"boilingPoint": "-195.795 ",
"meltingPoint": "-209.86 ",
"discoveredBy": "Daniel Rutherford",
"density": "1.2506 g/L",
"category": "Other-non-metals",
"state": "gas",
"history": [
"The mixture of nitric and hydrochloric acids was known as aqua regia (royal water), celebrated for its ability to dissolve gold, the king of metals.",
"The discovery of nitrogen is attributed to the Scottish physician Daniel Rutherford in 1772, who called it noxious air.",
"French chemist Antoine Lavoisier referred to nitrogen gas as \"mephitic air\" or azote, meaning \"no life\" in greek, due to it being mostly inert.",
"The earliest military, industrial, and agricultural applications of nitrogen compounds used saltpeter (sodium nitrate or potassium nitrate), most notably in gunpowder, and later as fertiliser."
],
"shells": [2, 5],
"uses": [
"Nitrogen has shown to be very influential in chemical reactions and compounds and has been used, and still is being used, extensively in the pharmaceutical industry.",
"Nitrogen gases can also be used to preserve nerves, blood, stem cells, and various other biological specimens.",
"It is commonly used for shrinking fittings so they can be inserted and used easily and then as they return to normal temperature they expand to form a tight-fitting connection.",
"It is used in the internal workings of many computers and helps to prevent them from overheating and burning."
],
"description": "Nitrogen is a common element in the universe, estimated at about seventh in total abundance in the Milky Way and the Solar System. At standard temperature and pressure, two atoms of the element bind to form dinitrogen, a colourless and odorless diatomic gas. Nitrogen occurs in all organisms, primarily in amino acids, nucleic acids and in adenosine triphosphate."
},
{
"atomicNumber": 8,
"name": "Oxygen",
"block": "p-block",
"atomicMass": "15.9994",
"symbol": "O",
"group": 16,
"discovered": "1772",
"appearance": "colorless",
"boilingPoint": "-182.962 ",
"meltingPoint": "-218.79 ",
"discoveredBy": "Joseph Priestley, Antoine Lavoisier and Carl Wilhelm Scheele",
"density": "1.429 g/L",
"category": "Other-non-metals",
"state": "gas",
"history": [
"Carl Wilhelm Scheele called the gas \"fire air\" because it was then the only known agent to support combustion.",
"In the meantime, on August 1, 1774, an experiment conducted by the British clergyman Joseph Priestley focused sunlight on mercuric oxide contained in a glass tube, which liberated a gas he named \"dephlogisticated air\".",
"Oxygen was liquefied in a stable state for the first time on March 29, 1883 by Polish scientists from Jagiellonian University, Zygmunt Wróblewski and Karol Olszewski."
],
"shells": [2, 6],
"uses": [
"Compressed oxygen tanks are used by mountaineers at high elevations to counteract the decreased O2 pressure.",
"Oxygen can be used as a sterilizing agent to kill certain anaerobic bacteria.",
"Oxygen is needed for the reaction that converts carbon to carbon dioxide gas in steel working.",
"In liquid form, oxygen is used widely as an oxidizing agent for use in missiles and rockets, where it reacts with liquid hydrogen to produce the terrific thrust needed for take-off."
],
"description": "Oxygen is a highly reactive nonmetal that readily forms oxides with most elements as well as with other compounds. It is the third-most abundant element in the universe by mass. Oxygen is continuously replenished in Earth's atmosphere by photosynthesis. Another form of oxygen, ozone, strongly absorbs UV rays and helps protect the biosphere from ultraviolet radiation."
},
{
"atomicNumber": 9,
"name": "Fluorine",
"block": "p-block",
"atomicMass": "18.9984",
"symbol": "F",
"group": 17,
"discovered": "1886",
"appearance": "pale yellow",
"boilingPoint": "-188.11 ",
"meltingPoint": "-219.67 ",
"discoveredBy": "Henri Moissan",
"density": "1.696 g/L",
"category": "Halogens",
"state": "gas",
"history": [
"In 1529, Georgius Agricola described fluorite as an additive used to lower the melting point of metals during smelting",
"Initial studies on fluorine were so dangerous that several 19th-century experimenters were deemed \"fluorine martyrs\" after misfortunes with hydrofluoric acid.",
"In 1886, after 74 years of effort by many chemists, Moissan isolated elemental fluorine."
],
"shells": [2, 7],
"uses": [
"Fluorine and its compounds are used in processing nuclear fuel.",
"Fluorochemicals, including many high-temperature plastics such as Teflon, are also made using fluorine.",
"Compounds of fluorine, including sodium fluoride, are used in toothpaste and in drinking water to prevent dental cavities."
],
"description": "Among the elements, fluorine ranks 24th in universal abundance and 13th in terrestrial abundance. Fluorite, the primary mineral source of fluorine which gave the element its name, was first described in 1529; as it was added to metal ores to lower their melting points for smelting. Fluorine is extremely reactive, as it reacts with all other elements, except for argon, neon, and helium."
},
{
"atomicNumber": 10,
"name": "Neon",
"block": "p-block",
"atomicMass": "20.1797",
"symbol": "Ne",
"group": 18,
"discovered": "1898",
"appearance": "colorless(orange-red glow when placed in an electric field)",
"boilingPoint": "-246.046 ",
"meltingPoint": "-248.59 ",
"discoveredBy": "Sir William Ramsay and Morris W. Travers",
"density": "0.9002 g/L",
"category": "Noble-gases",
"state": "gas",
"history": [
"Neon was discovered when Ramsay chilled a sample of air until it became a liquid, then warmed the liquid and captured the gases as they boiled off.",
"Neon's scarcity precluded its prompt application for lighting along the lines of Moore tubes, which used nitrogen and which were commercialized in the early 1900s.",
"In December 1910 Georges Claude demonstrated modern neon lighting based on a sealed tube of neon. In 1912, Claude's associate began selling neon discharge tubes as eye-catching advertising signs and was instantly more successful."
],
"shells": [2, 8],
"uses": [
"Neon bulbs are used in greenhouses and botanical gardens to stimulate plant growth.",
"Neon generally has a boiling point of 27.24K, which makes it a very efficient coolant than liquid Helium.",
"Lasers made with Neon and other compounds are very cost-efficient and emit laser between the infrared and visible regions of light.",
"Neon Lights are by far the most popular uses of Neon."
],
"description": "Neon is a colorless, odorless, inert monatomic Noble gas under standard conditions, with about two-thirds the density of air. It was discovered (along with krypton and xenon) in 1898 as one of the three residual rare inert elements remaining in dry air."
},
{
"atomicNumber": 11,
"name": "Sodium",
"block": "s-block",
"atomicMass": "22.9897",
"symbol": "Na",
"group": 1,
"discovered": "1807",
"appearance": "silvery-white metallic",
"boilingPoint": "882.940 ",
"meltingPoint": "97.794 ",
"discoveredBy": "Humphry Davy",
"density": "0.968 g/cm<sup>3</sup>",
"category": "Alkali-Metals",
"state": "solid",
"history": [
"The name sodium is thought to originate from the Arabic suda, meaning headache, as the headache-alleviating properties of sodium carbonate or soda were well known in early times.",
"Sodium had long been recognized in compounds, however, it was not isolated until 1807 by Sir Humphry Davy through the electrolysis of sodium hydroxide.",
"The chemical abbreviation for sodium was first published in 1814 by Jöns Jakob Berzelius in his system of atomic symbols, and is an abbreviation of the element's New Latin name natrium."
],
"shells": [2, 8, 1],
"uses": [
"Sodium in its metallic form is very important in making esters and in the manufacture of organic compounds.",
"It is also a component of sodium chloride (NaCl) a very important compount found everywhere in the living environment.",
"Liquid sodium has been used as a coolant for nuclear reactors.",
"Sodium vapor is used in streetlights and produces a brilliant yellow light."
],
"description": "Sodium is a soft, silvery-white, highly reactive metal. Sodium is the sixth most abundant element in the Earth's crust and exists in numerous minerals such as feldspars, sodalite, and rock salt (NaCl). Many salts of sodium are highly water-soluble."
},
{
"atomicNumber": 12,
"name": "Magnesium",
"block": "s-block",
"atomicMass": "24.307",
"symbol": "Mg",
"group": 2,
"discovered": "1755",
"appearance": "shiney-grey",
"boilingPoint": "1091 ",
"meltingPoint": "650 ",
"discoveredBy": "Joseph Black",
"density": "1.738 g/cm<sup>3</sup>",
"category": "Alkaline-Earth-Metals",
"state": "solid",
"history": [
"The name magnesium originates from the Greek word for locations related to the tribe of the Magnetes or Magnesia ad Sipylum, now in Turkey.",
"In 1618, a farmer at Epsom in England attempted to give his cows water from a well there. The cows refused to drink because of the water's bitter taste, but the farmer noticed that the water seemed to heal scratches and rashes. The substance is now known as magnesium sulfate.",
"The metal itself was first isolated by Sir Humphry Davy in England in 1808. He used electrolysis on a mixture of magnesia and mercuric oxide."
],
"shells": [2, 8, 2],
"uses": [
"Magnesium plays many crucial roles in the body, such as supporting muscle and nerve function and energy production.",
"Magnesium is used in products that benefit from being lightweight, such as car seats, luggage, laptops, cameras and power tools.",
"As magnesium ignites easily in air and burns with a bright light, it's used in flares, fireworks and sparklers."
],
"description": "Magnesium is produced in large, aging stars from the sequential addition of three helium nuclei to a carbon nucleus. When such stars explode as supernovas, much of the magnesium is expelled into the interstellar medium where it may recycle into new star systems. Magnesium is the eighth most abundant element in the Earth's crust and the fourth most common element in the Earth."
},
{
"atomicNumber": 13,
"name": "Aluminium",
"block": "p-block",
"atomicMass": "26.981",
"symbol": "Al",
"group": 13,
"discovered": "1824",
"appearance": "silvery grey metallic",
"boilingPoint": "2470",
"meltingPoint": "660.32",
"discoveredBy": "Hans Christian Ørsted",
"density": "2.70 g/cm<sup>3</sup>",
"category": "Post-Transition-Metals",
"state": "solid",
"history": [
"The ancients are known to have used alum as a dyeing mordant and for city defense. After the Crusades, alum, an indispensable good in the European fabric industry, was a subject of international commerce.",
"In 1754, German chemist Andreas Sigismund Marggraf synthesized alumina by boiling clay in sulfuric acid and subsequently adding potash.",
"Hans Christian Ørsted reacted anhydrous aluminium chloride with potassium amalgam, yielding a lump of metal looking similar to tin. He presented his results and demonstrated a sample of the new metal in 1825."
],
"shells": [2, 8, 3],
"uses": [
"Aluminium is ideal for wiring power grids, including overhead power transmission lines and local power distribution lines.",
"Luminium frames are lightweight and durable and can be made impact-resistant, which is useful in places that experience high winds.",
"Smartphones,laptops, and other electronics are increasingly using aluminium in their production.",
"Wires made of Aluminium are malleable and durable and can be used to make sculptures and other art works."
],
"description": "Aluminium has a density lower than those of other common metals, at approximately one third that of steel. It has a great affinity towards oxygen, and forms a protective layer of oxide on the surface when exposed to air. Aluminium visually resembles silver, both in its color and in its great ability to reflect light. It is soft, non-magnetic and ductile. It has one stable isotope, <sup>27</sup>Al; this isotope is very common, making aluminium the twelfth most common element in the Universe."
},
{
"atomicNumber": 14,
"name": "Silicon",
"block": "p-block",
"atomicMass": "28.0855",
"symbol": "Si",
"group": 14,
"discovered": "1823",
"appearance": "crystalline, reflective with bluish-tinged faces",
"boilingPoint": "3265 ",
"meltingPoint": "1414 ",
"discoveredBy": "Jöns Jacob Berzelius",
"density": "2.3290 g/cm<sup>3</sup>",
"category": "Metalloids",
"state": "solid",
"history": [
"Silicon rock crystals were familiar to various ancient civilizations, such as the predynastic Egyptians who used it for beads and small vases, as well as the ancient Chinese.",
"Gay-Lussac and Thénard are thought to have prepared impure amorphous silicon in 1811, through the heating of recently isolated potassium metal with silicon tetrafluoride, but they did not purify and characterize the product, nor identify it as a new element.",
"In 1823, Jöns Jacob Berzelius prepared amorphous silicon using approximately the same method as Gay-Lussac (reducing potassium fluorosilicate with molten potassium metal), but purifying the product to a brown powder by repeatedly washing it."
],
"shells": [2, 8, 4],
"uses": [
"Silicon is majorly used in the semiconductor industry to produce electronic components like transistors and diodes.",
"Silicon is used to create silicone, which chemically are silicon-oxygen polymers with methyl groups attached.",
"Solar cells and solar panels are created using silicon wafers, simply because of their semiconducting properties, as well as their abundance.",
"Silicon dioxide(sand) is used in the manufacturing of glass."
],
"description": "Silicon is a hard, brittle crystalline solid with a blue-grey metallic lustre, and is a tetravalent metalloid and semiconductor. Silicon is the eighth most common element in the universe by mass, but very rarely occurs as the pure element in the Earth's crust."
},
{
"atomicNumber": 15,
"name": "Phosphorus",
"block": "p-block",
"atomicMass": "30.9737",
"symbol": "P",
"group": 15,
"discovered": "1669",
"appearance": "white, red, black, violet",
"boilingPoint": "280.5 ",
"meltingPoint": "44.15 ",
"discoveredBy": "Hennig Brand",
"density": "2.36 g/cm<sup>3</sup>",
"category": "Other-non-metals",
"state": "solid",
"history": [
"The name Phosphorus in Ancient Greece was the name for the planet Venus and is derived from Greek, which roughly translates as light-bringer or light carrier.",
"Henning Brand attempted to create the fabled philosopher's stone through the distillation of some salts by evaporating urine, and in the process produced a white material that glowed in the dark and burned brilliantly. It was named 'phosphorus mirabilis'.",
"White phosphorus was first made commercially in the 19th century for the match industry. The bone-ash process became obsolete when the submerged-arc furnace for phosphorus production was introduced to reduce phosphate rock."
],
"shells": [2, 8, 5],
"uses": [
"Phosphorus is used in the manufacture of safety matches (red phosphorus), and incendiary shells.",
"Phosphorus is also used in steel manufacture and in the production of phosphor bronze.",
"It is also used as an alloying agent and to kill rodents.",
"Phosphates are used for special glasses, sodium lamps, in steel production, in military applications."
],
"description": "Elemental phosphorus exists in two major forms, white phosphorus and red phosphorus, but because it is highly reactive, phosphorus is never found as a free element on Earth. It has a concentration in the Earth's crust of about one gram per kilogram (compare copper at about 0.06 grams). In minerals, phosphorus generally occurs as phosphate."
},
{
"atomicNumber": 16,
"name": "Sulfur",
"block": "p-block",
"atomicMass": "32.065",
"symbol": "S",
"group": 16,
"discovered": "before 2000 BCE",
"appearance": "lemon-yellow",
"boilingPoint": "444.6 ",
"meltingPoint": "115.21 ",
"discoveredBy": "Ancient Chinese",
"density": "1.96 g/cm<sup>3</sup>",
"category": "Other-non-metals",
"state": "solid",
"history": [
"According to the Ebers Papyrus, a sulfur ointment was used in ancient Egypt to treat granular eyelids. Sulfur was also used for fumigation in preclassical Greece.",
"By the 3rd century, the Chinese discovered that sulfur could be extracted from pyrite. Chinese Daoists were interested in sulfur's flammability and its reactivity with certain metals.",
"In 1867, elemental sulfur was discovered in underground deposits in Louisiana and Texas. The highly successful Frasch process was developed to extract this resource."
],
"shells": [2, 8, 6],
"uses": [
"Elemental sulfur is used in black gunpowder, matches, and fireworks.",
"The principal use of sulfur is to create compounds like Hydrogen Sulfide, Carbon disulfide, Sulfur trioxide, etc.",
"It is also used as a fungicide, insecticide, and fumigant, and in the manufacture of phosphate fertilizers.",
"Sulfur is also used in hair and skin care products like shampoos, lotions, etc, to treat problems like acne and dandruff."
],
"description": "Sulfur is the tenth most common element by mass in the universe, and the fifth most common on Earth. Though sometimes found in pure, native form, sulfur on Earth usually occurs as sulfide and sulfate minerals. Being abundant in native form, sulfur was known in ancient times, being mentioned for its uses in ancient India, ancient Greece, China, and Egypt."
},
{
"atomicNumber": 17,
"name": "Chlorine",
"block": "p-block",
"atomicMass": "35.453",
"symbol": "Cl",
"group": 17,
"discovered": "1774",
"appearance": "pale yellow-green",
"boilingPoint": "-34.04 ",
"meltingPoint": "-101.5 ",
"discoveredBy": "Carl Wilhelm Scheele",
"density": "3.2 g/L",
"category": "Halogens",
"state": "gas",
"history": [
"The most common compound of chlorine, sodium chloride, has been known since ancient times; archaeologists have found evidence that rock salt was used as early as 3000 BC and brine as early as 6000 BC.",
"The element was first studied in detail in 1774 by Swedish chemist Carl Wilhelm Scheele, and he is credited with the discovery.Scheele produced chlorine by reacting MnO2 with HCl.",
"Chlorine gas was first used as a weapon on April 22, 1915, at Ypres by the German Army. The effect on the allies was devastating because the existing gas masks were difficult to deploy and had not been broadly distributed."
],
"shells": [2, 8, 7],
"uses": [
"Chlorine is a disinfectant and is used to treat drinking water and swimming pool water.",
"Chlorine is also used as disinfectants, cleaning agents, and helps in whitening the surface that is being cleaned.",
"It helps provide an environment for food that is free from bacteria like E.coli and Salmonella.",
"It is also used in the production of paper and paper products and in the manufacturing of drugs and antiseptics."
],
"description": "Chlorine is a yellow-green gas at room temperature. It is an extremely reactive element and a strong oxidising agent. Chlorine played an important role in the experiments conducted by medieval alchemists, which commonly involved the heating of chloride salts like ammonium chloride and sodium chloride. As a chemical warfare agent, chlorine was first used in World War I as a poison gas weapon."
},
{
"atomicNumber": 18,
"name": "Argon",
"block": "p-block",
"atomicMass": "39.948",
"symbol": "Ar",
"group": 18,
"discovered": "1894",
"appearance": "colorless(violet glow when placed in an electric field)",
"boilingPoint": "-185.848 ",
"meltingPoint": "-189.34 ",
"discoveredBy": "Sir William Ramsay and John William Strutt",
"density": "1.784 g/L",
"category": "Noble-gases",
"state": "gas",
"history": [
"Argon (Greek ἀργόν, meaning \"lazy\" or \"inactive\") is named in reference to its chemical inactivity.",
"Argon was first isolated from air in 1894 by Lord Rayleigh and Sir William Ramsay at University College London by removing oxygen, carbon dioxide, water, and nitrogen from a sample of clean air.",
"Argon was also encountered in 1882 through independent research of H. F. Newall and W. N. Hartley.",
"Until 1957, the symbol for argon was \"A\", but now it is known as \"Ar\"."
],
"shells": [2, 8, 8],
"uses": [
"Argon lasers are used in the treatment of retinal detachment and retinal phototherapy for those who are diabetic.",
"The applications for the argon laser system are mainly in the medical field, as it is capable of targeting areas with extreme precision.",
"Within drinks, argon is added to wine barrels to displace air. Being denser than air, it settles above the liquid protecting the wine from souring and oxidation.",
"Argon is used popularly within welding and casting industries, especially in the making of specialty alloys and manufacturing titanium."
],
"description": "Argon is the third-most abundant gas in the Earth's atmosphere, at 0.934% (9340 ppmv). Nearly all of the argon in the Earth's atmosphere is radiogenic argon-40, derived from the decay of potassium-40 in the Earth's crust. In the universe, argon-36 is by far the most common argon isotope."
},
{
"atomicNumber": 19,
"name": "Potassium",
"block": "s-block",
"atomicMass": "39.0983",
"symbol": "K",
"group": 1,
"discovered": "1807",
"appearance": "silvery-gray",
"boilingPoint": "759 ",
"meltingPoint": "63.5 ",
"discoveredBy": "Humphry Davy",
"density": "0.89 g/cm<sup>3</sup>",
"category": "Alkali-Metals",
"state": "solid",
"history": [
"When Humphry Davy first isolated the pure element using electrolysis in 1807, he named it potassium, which he derived from the word potash. A few months after discovering potassium, Davy used the same method to isolate sodium.",
"The name derives from the English \"potash\" or \"pot ashes\" because it is found in caustic potash (KOH). The symbol K derives from the Latin kalium via the Arabic qali for alkali.",
"For a long time the only significant applications for potash were the production of glass, bleach, soap and gunpowder as potassium nitrate."
],
"shells": [2, 8, 8, 1],
"uses": [
"The largest use of potassium is potassium chloride (KCl) which is used to make fertilizers to improve plant growth.",
"Industrial applications for potassium include soaps, detergents, gold mining, dyes, glass production, gunpowder, and batteries.",
"Potassium also plays a vital role in our bodies. It is used in muscle contraction, fluid and pH balance, bone health, and helps to prevent kidney stones.",
"Potassium involved in muscle contractions, heart function, fluid balance, and other process in the body."
],
"description": "Potassium is a silvery-white metal that is soft enough to be cut with a knife with little force. In the periodic table, potassium is one of the alkali metals, all of which have a single valence electron in the outer electron shell, that is easily removed to create an ion with a positive charge – a cation, that combines with anions to form salts."
},
{
"atomicNumber": 20,
"name": "Calcium",
"block": "s-block",
"atomicMass": "40.078",
"symbol": "Ca",
"group": 2,
"discovered": "1808",
"appearance": "dull dray silver",
"boilingPoint": "1484 ",
"meltingPoint": "842 ",
"discoveredBy": "Humphry Davy",
"density": "1.55 g/cm<sup>3</sup>",
"category": "Alkaline-Earth-Metals",
"state": "solid",
"history": [
"Lime(Ca(OH)2) as a building material and as plaster for statues was used as far back as around 7000 BC.",
"Humphry Davy isolated calcium and magnesium by putting a mixture of the respective metal oxides with mercury(II) oxide on a platinum plate which was used as the anode, the cathode being a platinum wire partially submerged into mercury.",
"Electrolysis then gave calcium–mercury and magnesium–mercury amalgams, and distilling off the mercury gave the metal. However, pure calcium cannot be prepared in bulk by this method and a workable commercial process for its production was not found until over a century later."
],
"shells": [2, 8, 8, 2],
"uses": [
"The main role of calcium in the body is to provide structure and strength to the skeleton.",
"Calcium may be used as a reducing agent in the process of metal extraction.",
"Blackboard chalks and plaster of paris contain a solution of calcium hydroxide.",
"Other compounds of calcium are used in food additives, toothpastes, and also in crayons, plastics and cosmetics.",
"Calcium is also used as a reducing agent in metal extraction and as an allying agent in the production of some metals."
],
"description": "Calcium is a reactive metal that forms a dark oxide-nitride layer when exposed to air. It is the fifth most abundant element in Earth's crust, and the third most abundant metal, after iron and aluminium. The most common calcium compound on Earth is calcium carbonate, found in limestone and the fossilised remnants of early sea life."
},
{
"atomicNumber": 21,
"name": "Scandium",
"block": "d-block",
"atomicMass": "44.955",
"symbol": "Sc",
"group": 3,
"discovered": "1879",
"appearance": "silvery-white",
"boilingPoint": "2836 ",
"meltingPoint": "1541 ",
"discoveredBy": "Lars Fredrik Nilson",
"density": "2.985 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Dmitri Mendeleev, who is referred to as the father of the periodic table, predicted the existence of an element ekaboron, with an atomic mass between 40 and 48 in 1869.",
"Lars Fredrik Nilson and his team detected this element in the minerals euxenite and gadolinite in 1879.",
"Metallic scandium was produced for the first time in 1937 by electrolysis of a eutectic mixture of potassium, lithium, and scandium chlorides, at 700–800 °C."
],
"shells": [2, 8, 9, 2],
"uses": [
"Scandium is used in aluminum-scandium alloys for aerospace industry components and for sports equipments.",
"Scandium oxide (scandia), is used to make high intensity “stadium” lights.",
"Very dilute scandium sulfate is used to improve the germination of seeds such as corn, peas and wheat.",
"Scandium iodide is used in mercury vapor lamps, which are used to replicate sunlight in studios for films."
],
"description": "Scandium is present in most of the deposits of rare-earth and uranium compounds, but it is extracted from these ores in only a few mines worldwide.Scandium is a soft metal with a silvery appearance. It develops a slightly yellowish or pinkish cast when oxidized by air. It is susceptible to weathering and dissolves slowly in most dilute acids."
},
{
"atomicNumber": 22,
"name": "Titanium",
"block": "d-block",
"atomicMass": "47.867",
"symbol": "Ti",
"group": 4,
"discovered": "1791",
"appearance": "silvery-grey white",
"boilingPoint": "3287 ",
"meltingPoint": "1668 ",
"discoveredBy": "William Gregor",
"density": "4.506 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Gregor recognized the presence of a new element in ilmenite when he found black sand by a stream and noticed the sand was attracted by a magnet. Analyzing the sand, he determined the presence of two metal oxides: iron oxide and a white metallic oxide(Titanium oxide) he could not identify.",
"Around the same time, Franz-Joseph Müller von Reichenstein produced a similar substance, but could not identify it. The oxide was independently rediscovered in 1795 by Prussian chemist Martin Heinrich Klaproth.",
"In the 1950s and 1960s, the Soviet Union pioneered the use of titanium in military and submarine applications as part of programs related to the Cold War."
],
"shells": [2, 8, 10, 2],
"uses": [
"Titanium combines with iron, aluminum, vanadium, nickel, molybdenum and other metals to produce high-performance alloys that are used in military equipment.",
"Titanium metal is used in the strings of tennis and badminton racquets.",
"High-quality white paints usually contain significant amounts of titanium dioxide, which has a pigment name of \"titanium white\".",
"Titanium dioxide is pressed into the fibers of high-quality papers to improve their whiteness, brightness, and texture."
],
"description": "Titanium occurs within a number of mineral deposits, principally rutile and ilmenite, which are widely distributed in the Earth's crust and lithosphere; it is found in almost all living things, as well as bodies of water, rocks, and soils. The two most useful properties of the metal are corrosion resistance and strength-to-density ratio, the highest of any metallic element. In its unalloyed condition, titanium is as strong as some steels, but less dense."
},
{
"atomicNumber": 23,
"name": "Vanadium",
"block": "d-block",
"atomicMass": "50.9415",
"symbol": "V",
"group": 5,
"discovered": "1830",
"appearance": "blue-silvery-grey",
"boilingPoint": "3407 ",
"meltingPoint": "1910 ",
"discoveredBy": "Nils Gabriel Sefström",
"density": "6.11 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Andrés Manuel Del Río extracted the element from a sample of Mexican brown lead ore, later named vanadinite. He found that its salts exhibit a wide variety of colors, and as a result he named the element panchromium(meaning 'all colors' in greek).",
"In 1831 Swedish chemist Nils Gabriel Sefström rediscovered the element in a new oxide he found while working with iron ores. Later that year, Friedrich Wöhler confirmed del Río's earlier work.",
"In 1927, pure vanadium was produced by reducing vanadium pentoxide with calcium."
],
"shells": [2, 8, 11, 2],
"uses": [
"Around 80 percent of the vanadium produced is alloyed with iron to make a shock- and corrosion-resistant steel additive.",
"Vanadium-steel alloys are used to make extremely tough tools such as axles, armor plates, car gears, springs, cutting tools, piston rods and crankshafts.",
"Vanadium alloys are also used to make nuclear reactors because of their low-neutron-absorbing properties.",
"The compound vanadium pentoxide is used as a catalyst in some chemical reactions and in the manufacturing of ceramics."
],
"description": "Vanadium is rarely found in nature, but once isolated artificially, the formation of an oxide layer (passivation) somewhat stabilizes the free metal against further oxidation. Vanadium occurs naturally in about 65 minerals and in fossil fuel deposits. It is produced in China and Russia from steel smelter slag. Other countries produce it either from magnetite directly, flue dust of heavy oil, or as a byproduct of uranium mining."
},
{
"atomicNumber": 24,
"name": "Chromium",
"block": "d-block",
"atomicMass": "51.9961",
"symbol": "Cr",
"group": 6,
"discovered": "1794",
"appearance": "silvery-metallic",
"boilingPoint": "2671",
"meltingPoint": "1907",
"discoveredBy": "Louis Nicolas Vauquelin",
"density": "7.19 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"In 1794, Louis Nicolas Vauquelin received samples of crocoite ore. He produced chromium trioxide (CrO3) by mixing crocoite with hydrochloric acid.",
"In 1797, Vauquelin discovered that he could isolate metallic chromium by heating the oxide in a charcoal oven, for which he is credited as the one who truly discovered the element.",
"Chromium was used for electroplating as early as 1848, but this use only became widespread with the development of an improved process in 1924."
],
"shells": [2, 8, 13, 1],
"uses": [
"Chromium is hard, often mixed into steel to make a hard and corrosion-resistant alloy, mainly used for refining stainless steel.",
"Chromium salt is mainly used in electroplating, tanning, printing, and dyeing, medicine, fuel, catalysts, oxidants, matches, and metal corrosion inhibitors.",
"In the automotive industry, chromium is involved in the production of car brake pads.",
"It can be used as a kind of refractory material for the lining of steel-making furnaces."
],
"description": "Chromium is extremely hard, and is the third hardest element behind carbon (diamond) and boron. Its Mohs hardness is 8.5, which means that it can scratch samples of quartz and topaz. Chromium is the main additive in stainless steel, to which it adds anti-corrosive properties. Chromium is also highly valued as a metal that is able to be highly polished while resisting tarnishing."
},
{
"atomicNumber": 25,
"name": "Manganese",
"block": "d-block",
"atomicMass": "54.938",
"symbol": "Mn",
"group": 7,
"discovered": "1774",
"appearance": "silvery metallic",
"boilingPoint": "2061",
"meltingPoint": "1246",
"discoveredBy": "Carl Wilhelm Scheele",
"density": "7.21 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Several colorful oxides of manganese are abundant in nature and have been used as pigments since the Stone Age.",
"Manganese compounds were used by Egyptian and Roman glassmakers, either to add to, or remove color from glass.",
"Ignatius Gottfried Kaim and Johann Glauber discovered that manganese dioxide could be converted to permanganate, a useful laboratory reagent.",
"Until the development of batteries with nickel-cadmium and lithium, most batteries contained manganese."
],
"shells": [2, 8, 13, 2],
"uses": [
"Manganese is used to make clear glass.",
"It is also used to desulfurize and deoxidize steel in steel production and to reduce the octane rating in gasoline.",
"It is used as a black-brown pigment in paint and as filler in dry cell batteries.",
"Alloys made from Manganese help stiffen the aluminum in soft-drink cans.",
"Important nonmetallurgical uses include battery cathodes, soft ferrites used in electronics, micronutrients in fertilizers and animal feed."
],
"description": "Manganese is a transition metal with a multifaceted array of industrial alloy uses, particularly in stainless steels. It improves strength, workability, and resistance to wear. Manganese oxide is used as an oxidising agent, as a rubber additive, in glass making, fertilisers, and ceramics. Manganese sulfate can be used as a fungicide."
},
{
"atomicNumber": 26,
"name": "Iron",
"block": "d-block",
"atomicMass": "55.845",
"symbol": "Fe",
"group": 8,
"discovered": "before 5000 BC",
"appearance": "lustrous metallic with a grayish tinge",
"boilingPoint": "2862",
"meltingPoint": "1538",
"discoveredBy": "Unknown",
"density": "7.874 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Even after the discovery of smelting it took many centuries for iron to replace bronze as the metal of choice for tools and weapons.",
"Meteoric iron was highly regarded due to its origin in the heavens and was often used to forge weapons and tools.",
"Cast iron was first produced in China during 5th century BC and was used for warfare, agriculture, and architecture.",
"Since iron was becoming cheaper and more plentiful, it also became a major structural material following the building of the innovative first iron bridge in 1778."
],
"shells": [2, 8, 14, 2],
"uses": [
"Iron, in general, was heavily used for tools and weapons in the past.",
"Uses of iron in daily life include machinery and tools, as well as vehicles, hulls of ships, structural elements for buildings, bridges and aircraft.",
"Iron's most common uses are in kitchen cutlery, appliances and cookware and also for hospital equipment.",
"Alloys of Iron, nickel, steel and cobalt are used to create magnets."
],
"description": "Iron is, by mass, the most common element on Earth, right in front of oxygen (32.1% and 30.1%, respectively), forming much of Earth's outer and inner core. It is the fourth most common element in the Earth's crust. In its metallic state, iron is rare in the Earth's crust, limited mainly to deposition by meteorites."
},
{
"atomicNumber": 27,
"name": "Cobalt",
"block": "d-block",
"atomicMass": "58.933",
"symbol": "Co",
"group": 9,
"discovered": "1735",
"appearance": "hard lustrous bluish gray metal",
"boilingPoint": "2927",
"meltingPoint": "1495",
"discoveredBy": "Georg Brandt",
"density": "8.90 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Cobalt has been detected in Egyptian sculpture, Persian jewelry from the third millennium BC, in the ruins of Pompeii, destroyed in 79 AD, and in China, dating from the Tang dynasty and the Ming dynasty.",
"The word cobalt is derived from the German kobalt, from kobold meaning \"goblin\", a superstitious term used for the ore of cobalt by miners.",
"Swedish chemist Georg Brandt (1694–1768) is credited with discovering cobalt, showing it to be a previously unknown element, distinct from bismuth and other traditional metals."
],
"shells": [2, 8, 15, 2],
"uses": [
"Cobalt is also used in electronic devices and batteries that power our digital world, forming part of the circuitry and the semi-conductors that make computers work.",
"cobalt-based batteries help decarbonise travel and help integrate renewable energy into national electricity grids.",
"Cobalt provides objects with an attractive surface that prevents rusting.",
"Cobalt-60, a radioactive form of the element, can treat some forms of cancer."
],
"description": "Cobalt is found in the Earth's crust only in a chemically combined form, save for small deposits found in alloys of natural meteoric iron. Cobalt is primarily used in lithium-ion batteries, and in the manufacture of magnetic, wear-resistant and high-strength alloys."
},
{
"atomicNumber": 28,
"name": "Nickel",
"block": "d-block",
"atomicMass": "58.6934",
"symbol": "Ni",
"group": 10,
"discovered": "1751",
"appearance": "lustrous, metallic, and silver with a gold tinge",
"boilingPoint": "2730",
"meltingPoint": "1455",
"discoveredBy": "Axel Fredrik Cronstedt",
"density": "8.908 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"In 1751, Baron Axel Fredrik Cronstedt tried to extract copper from kupfernickel at a cobalt mine in the Swedish village of Los, and instead produced a white metal that he named after the spirit that had given its name to the mineral, nickel.",
"Some ancient Chinese manuscripts suggest that \"white copper\"(cupronickel) was used there between 1700 and 1400 BCE.",
"Beginning in 1824, nickel was obtained as a byproduct of cobalt blue production. The first large-scale smelting of nickel began in Norway in 1848 from nickel-rich pyrrhotite."
],
"shells": [2, 8, 16, 2],
"uses": [
"Nickel increases an alloy's resistance to corrosion and its ability to withstand extreme temperatures.",
"Nickel-bearing alloys are often used in harsh environments, such as those in chemical plants, petroleum refineries, jet engines, power generation facilities, and offshore installations.",
"Nickel alloys are increasingly being used in making rechargeable batteries for portable computers, power tools, and hybrid and electric vehicles.",
"All U.S. circulating coins except the penny are made of alloys that contain nickel."
],
"description": " Pure nickel, powdered to maximize the reactive surface area, shows a significant chemical activity, but larger pieces are slow to react with air under standard conditions because an oxide layer forms on the surface and prevents further corrosion. Even so, pure native nickel is found in Earth's crust only in tiny amounts."
},
{
"atomicNumber": 29,
"name": "Copper",
"block": "d-block",
"atomicMass": "63.546",
"symbol": "Cu",
"group": 11,
"discovered": "9000 BCE",
"appearance": "red-orange metallic luster",
"boilingPoint": "2562",
"meltingPoint": "1084.62",
"discoveredBy": "Middle east",
"density": "8.96 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"The history of copper use dates to 9000 BC in the Middle East; a copper pendant was found in northern Iraq that dates to 8700 BC.",
"Copper smelting was independently invented in different places. It was probably discovered in China before 2800 BC, in Central America around 600 AD, and in West Africa about the 9th or 10th century AD.",
"Alloying copper with tin to make bronze was first practiced about 4000 years after the discovery of copper smelting, and about 2000 years after \"natural bronze\" had come into general use.",
"Copper was first mined in ancient Britain as early as 2100 BC. "
],
"shells": [2, 8, 18, 1],
"uses": [
"Copper is an easily molded base metal that is often added to precious metals to improve their elasticity, flexibility, hardness, colour, and resistance to corrosion.",
"Hospitals are installing copper touch surfaces around the world to halt the spread of bacterial infections in hospital settings.",
"Copper wire, tubing, and piping are still some of the most commonly used building materials in the plumbing and electrical industries.",
"Copper is an essential component in the motors, wiring, radiators, connectors, brakes, and bearings used in cars and trucks."
],
"description": "A freshly exposed surface of pure copper has a pinkish-orange color. Copper is used as a conductor of heat and electricity, as a building material, and as a constituent of various metal alloys, such as sterling silver used in jewelry, cupronickel(copper-nickel) used to make marine hardware and coins, and constantan used in strain gauges and thermocouples for temperature measurement."
},
{
"atomicNumber": 30,
"name": "Zinc",
"block": "d-block",
"atomicMass": "65.38",
"symbol": "Zn",
"group": 12,
"discovered": "1746",
"appearance": "silvery-gray",
"boilingPoint": "907",
"meltingPoint": "419.53",
"discoveredBy": "Andreas Sigismund Marggraf",
"density": "7.14 g/cm<sup>3</sup>",
"category": "Transition-metals",
"state": "solid",
"history": [
"Zinc mines at Zawar, near Udaipur in India, have been active since the Mauryan period.",
"The oldest known pills were made of the zinc carbonates hydrozincite and smithsonite which were used for sore eyes.",
"By about 30 BC the Romans made brass by heating powdered zinc silicate, charcoal and copper together in a crucible.",
"Metallic zinc was isolated in India by 1300 AD, much earlier than in the West. Before it was isolated in Europe, it was imported from India in about 1600 CE."
],
"shells": [2, 8, 18, 2],
"uses": [
"About one-half of the zinc that is produced is used in zinc galvanizing.",
"Zinc is combined with copper (to form brass) and with other metals to form materials that are used in automobiles, electrical components, and household fixtures.",
"Zinc oxide is used in rubber manufacturing and as a protective skin ointment.",
"Zinc is also used in medicines to maintain and boost the immune system and the body's enzyme production."
],
"description": "Zinc is a slightly brittle metal at room temperature and has a silvery-greyish appearance when oxidation is removed. It is the 24th most abundant element in Earth's crust and has five stable isotopes. The mines of Rajasthan have given definite evidence of zinc production going back to the 6th century BC."
},
{
"atomicNumber": 31,
"name": "Gallium",
"block": "p-block",
"atomicMass": "69.723",
"symbol": "Ga",
"group": 13,
"discovered": "1875",
"appearance": "silvery blue",
"boilingPoint": "2400",
"meltingPoint": "29.7646",
"discoveredBy": "Lecoq de Boisbaudran",
"density": "5.91 g/cm<sup>3</sup>",
"category": "Post-Transition-Metals",
"state": "solid",
"history": [
"In 1871, the existence of gallium was first predicted by Russian chemist Dmitri Mendeleev, who named it \"eka-aluminium\" from its position in his periodic table.",
"Gallium was discovered using spectroscopy by French chemist Paul Emile Lecoq de Boisbaudran in 1875 from its characteristic spectrum in a sample of sphalerite. Later that year, Lecoq obtained the free metal by electrolysis of the hydroxide in potassium hydroxide solution.",
"In 1978, the electronics industry used gallium to fabricate light emitting diodes, photovoltaics and semiconductors."
],
"shells": [2, 8, 18, 3],
"uses": [
"Gallium is used primarily in electronic circuits, semiconductors and light-emitting diodes.",
"It is also useful in high-temperature thermometers, barometers, pharmaceuticals and nuclear medicine tests.",
"About 95% of all gallium produced is used to make gallium arsenide, a compound used in microwave and infrared circuits.",
"Gallium arsenide can produce laser light directly from electricity and is used in solar panels, including those on the Mars Exploration Rover."
],
"description": "Elemental gallium is a soft, silvery metal at standard temperature and pressure; however in its liquid state it becomes silvery white. If too much force is applied, the gallium may fracture conchoidally. Gallium does not occur as a free element in nature, but as gallium (III) compounds in trace amounts in zinc ores such as sphalerite and in bauxite. Gallium alloys are used in thermometers as a non-toxic and environmentally friendly alternative to mercury, and can withstand higher temperatures than mercury."
},
{
"atomicNumber": 32,
"name": "Germanium",
"block": "p-block",
"atomicMass": "72.64",
"symbol": "Ge",
"group": 14,
"discovered": "1886",
"appearance": "greyish-white",
"boilingPoint": "2833 ",
"meltingPoint": "938.25 ",
"discoveredBy": "Clemens Winkler",
"density": "5.323 g/cm<sup>3</sup>",
"category": "Metalloids",
"state": "solid",
"history": [
"In 1869, the Russian chemist Dmitri Mendeleev predicted the existence of an element that would fill a gap in the carbon family. He named it \"ekasilicon\" and estimated its atomic weight to be 70.",
"In mid-1885, at a mine near Freiberg, Saxony, a new mineral was discovered and named argyrodite.The chemist Clemens Winkler analyzed this new mineral, which proved to be a combination of silver, sulfur, and a new element. Winkler was able to isolate the new element in 1886 and found it similar to antimony.",
"Winkler named the new element germanium in honor of his homeland."
],
"shells": [2, 8, 18, 4],
"uses": [
"The largest use of germanium is in the semiconductor industry.",
"When doped with small amounts of arsenic, gallium, indium, antimony or phosphorus, germanium is used to make transistors for use in electronic devices.",
"Germanium is also used to create alloys and as a phosphor in fluorescent lamps.",
"Some germanium compounds seem to be effective in killing some types of bacteria and are currently being studied for use in chemotherapy."
],
"description": "Germanium is a lustrous, hard-brittle, grayish-white metalloid in the carbon group, chemically similar to its group neighbors silicon and tin. Pure germanium is a semiconductor with an appearance similar to elemental silicon. Like silicon, germanium naturally reacts and forms complexes with oxygen in nature."
},
{
"atomicNumber": 33,
"name": "Arsenic",
"block": "p-block",
"atomicMass": "74.9216",
"symbol": "As",
"group": 15,
"discovered": "1250",
"appearance": "metallic-grey",
"boilingPoint": "613 ",
"meltingPoint": "816.8 ",
"discoveredBy": "Albertus Magnus",
"density": "5.727 g/cm<sup>3</sup>",
"category": "Metalloids",
"state": "solid",
"history": [
"During the Bronze Age, arsenic was often included in bronze, which made the alloy harder.",
"The isolation of arsenic was described by Jabir ibn Hayyan before 815 AD. Albertus Magnus later isolated the element from a compound in 1250, by heating soap together with arsenic trisulfide.",
"In 1649, Johann Schröder published two ways of preparing arsenic."
],
"shells": [2, 8, 18, 5],
"uses": [
"Starting in the 1940s, arsenic-treated wood preservatives, such as chromated copper arsenate (CCA), were widely used to prevent rotting in lumber.",
"Arsenic is sometimes alloyed with lead to form a harder, more durable metal.",
"Arsenic is often used as a doping agent for solid-state devices such as transistors.",
"Gallium arsenide is used in lasers that convert electricity into coherent light."
],
"description": "Arsenic occurs in many minerals, usually in combination with sulfur and metals, but also as a pure elemental crystal. Arsenic is a metalloid. It has various allotropes, but only the gray form, which has a metallic appearance, is important to industry. The primary use of arsenic is in alloys of lead (for example, in car batteries and ammunition). "
},
{
"atomicNumber": 34,
"name": "Selenium",
"block": "p-block",
"atomicMass": "78.96",
"symbol": "Se",
"group": 16,
"discovered": "1817",
"appearance": "grey metallic-looking",
"boilingPoint": "685 ",
"meltingPoint": "221 ",
"discoveredBy": "Jöns Jacob Berzelius",
"density": "4.81 g/cm<sup>3</sup>",
"category": "Other-non-metals",
"state": "solid",
"history": [
"Selenium (Greek: selene meaning \"Moon\") was discovered in 1817 by Jöns Jacob Berzelius and Johan Gottlieb Gahn.",
"In 1873, Willoughby Smith found that the electrical resistance of grey selenium was dependent on the ambient light. The first commercial products using selenium were developed by Werner Siemens in the mid-1870s.",
"In 1954, the first hints of specific biological functions of selenium were discovered in microorganisms by biochemist, Jane Pinsent. It was discovered to be essential for mammalian life in 1957."
],
"shells": [2, 8, 18, 6],
"uses": [
"Selenium has good photovoltaic and photoconductive properties, and it is used extensively in electronics, such as photocells, light meters and solar cells.",
"Selenium is used to remove colour from glass, to give a red colour to glasses and enamels.",
"Selenium can also find applications in photocopying, in the toning of photographs.",
"Other uses of selenium are in metal alloys such as the lead plates used in storage batteries and in rectifiers to convert AC current in DC current."
],
"description": "Selenium is a nonmetal with properties that are intermediate between the elements above and below in the periodic table, sulfur and tellurium, and also has similarities to arsenic. It rarely occurs in its elemental state or as pure ore compounds in the Earth's crust."
},
{
"atomicNumber": 35,
"name": "Bromine",
"block": "p-block",