Wikidata:WikiProject Chemistry/Tools

From Wikidata
Jump to navigation Jump to search

Home

 

Guidelines

 

Properties

 

References

 

Tools

 


Classification trees[edit]

In order to optimize the use of wikidata several classifications have to be applied on each chemical compounds:

  1. All pure components are defined by the property instance of (P31) with value chemical compound (Q11173).
  2. All pure components are defined by their elemental composition (properties still missing).
  3. All pure components are defined by their functional groups (property and list of functional groups used in that classification still missing).

Chemical element[edit]

  • Mandatory properties:
    • ..

Chemical compound[edit]

  • Chemical compound and mineral form have to be splitted into 2 different items.

Definition[edit]

Examples[edit]

amyl alcohol (Q248797)subclass of (P279): chemical compound (Q11173)

water (Q283)instance of (P31): chemical compound (Q11173)

Properties[edit]

  • Mandatory properties:
    • CAS Registry Number (P231): Only one value per chemical compound. Don't mix different numbers representing different compounds in the same item:
      • For drugs: only the CAS number of the active substance in the organic form. Salt forms have to be described in other items.
      • For hydrates: only the CAS number for the hydrate defined in the label of the item. Other hydrates have to be described in other items.
    • PubChem CID (P662): Only one number per item and only the CID number.
    • chemical formula (P274): Different ways are possible to describe the formula but put always the w:en:Hill formula and after other formulas based on other rules.
    • canonical SMILES (P233): Use the canonical version of the SMILES identifier: this ensures an unique version of the SMILES.
    • InChI (P234): Use the standard version of the InChI identifier like 1S/C2H6O/c1-2-3/h3H,2H2,1H3 and not 1/C2H6O/c1-2-3/h3H,2H2,1H3
    • InChIKey (P235): Use the standard version of the InChIKey identifier has a single character at the end of the identifier (in the following example this is an N): BQJCRHHNABKAKU-KBQPJGBKSA-N.
  • Required properties:
  • Optional properties:
    • Identifiers:
    • Physical properties:
    • Safety properties:

Statistics[edit]

selection 1: # instance of: chemical compound (Q11173)
selection 2: UNION of instance of: chemical compound (Q11173), InChIKey
selection 3: anything having InChI, InChIKey
selection 4: UNION of instance of: chemical compound (Q11173), InChI, InChIKey
selection 5: UNION of instance of: chemical compound (Q11173), InChI, InChIKey, CAS number, ChEBI ID, CHEMBL ID, PubChem ID
selection 6: UNION of instance of: chemical compound (Q11173), CAS number, PubChem ID, ChEBI ID
selection 7: UNION of instance of: chemical compound (Q11173), PubChem Compound ID
selection 8: UNION of instance of: chemical compound (Q11173), CAS number
selection 9: UNION of instance of: chemical compound (Q11173), ChEBI ID

Date Selection 1 Selection 2 Selection 3 Selection 4 Selection 5 Selection 6 Selection 7 Selection 8 Selection 9
14.12.2016 156543 151158 148568 10881 19592 144315 69890 82410
07.02.2017 156629 151231 148619 10838
2017-10-14 156823 151315 147676 11266 20012 144595 69885 82989
2018-02-19 157012 151521 148858 11259 20005 144761 69925 83002
2018-07-02 157061 151617 148994 11616 20804 144852 70541 84511
2019-05-01 162492 156457 11604 20976 149908 71148 84616
2019-11-17 216837 157554 154400 12711 22392 150872 124207 85893
2020-07-20 1063182 997119 989961 14010 25072 200828 ? 85774
2021-03-21 1201284 1135517 1128891 14227 25832 654272 917634 98371
2021-11-14 1223684 1157978 1151350 14080 25535 678244 917610 98050
2022-08-13 1244986 1179424 1172560 15566 32124 934132 925861 107281

Dashboard[edit]

all entities | count | all groupings | without grouping property | below threshold (20) | Querying about chemical compound (Q11173)  View with Reasonator View with SQIDGrouping by instance of (P31)
Top groupings (Minimum 20 items) Top Properties (used at least 0 times per grouping)
Name Count CAS Registry Number (P231) InChI (P234) InChIKey (P235) ChEMBL ID (P592) PubChem CID (P662) ChEBI ID (P683) DSSTox substance ID (P3117) ECHA Substance Infocard ID (P2566) ZVG number (P679)
chemical compound (Q11173) 131 66.41% (87) 🔍 16.79% (22) 🔍 16.79% (22) 🔍 4.58% (6) 🔍 18.32% (24) 🔍 2.29% (3) 🔍 6.11% (8) 🔍 4.58% (6) 🔍 2.29% (3) 🔍
Totals (all items) 131 66.41% (87) 🔍 16.79% (22) 🔍 16.79% (22) 🔍 4.58% (6) 🔍 18.32% (24) 🔍 2.29% (3) 🔍 6.11% (8) 🔍 4.58% (6) 🔍 2.29% (3) 🔍


Selection SPARQL queries[edit]

# instance of: chemical compound (Q11173)[edit]

#title: Give me a list of all chemical compounds
SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173
}
Give me a list of all chemical compounds
#title: Give me a list of all chemical compounds and its subclasses
SELECT * WHERE {
  ?compound wdt:P31/wdt:P279* wd:Q11173
}
Give me a list of all chemical compounds and its subclasses

UNION of instance of: chemical compound (Q11173), InChIKey[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P235 ?inchikey 
}
Try it!

anything having InChI, InChIKey[edit]

SELECT * WHERE {
  ?compound wdt:P234 ?inchi ;
            wdt:P235 ?inchikey 
}
Try it!

UNION of instance of: chemical compound (Q11173), InChI, InChIKey[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P234 ?inchi ;
            wdt:P235 ?inchikey 
}
Try it!

UNION of instance of: chemical compound (Q11173), InChI, InChIKey, CAS number, ChEBI ID, CHEMBL ID, PubChem Compound ID[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P234 ?inchi ;
            wdt:P235 ?inchikey ;
            wdt:P231 ?cas ;
            wdt:P683 ?chebi ;
            wdt:P592 ?chembl ;
            wdt:P662 ?pubchem
}
Try it!

UNION of instance of: chemical compound (Q11173), CAS number, PubChem Compound ID, ChEBI ID[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P231 ?cas ;
            wdt:P662 ?pubchem ;
            wdt:P683 ?chebi
}
Try it!

UNION of instance of: chemical compound (Q11173), PubChem Compound ID[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P662 ?pubchem
}
Try it!

UNION of instance of: chemical compound (Q11173), CAS number[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P231 ?cas
}
Try it!

UNION of instance of: chemical compound (Q11173), ChEBI ID[edit]

SELECT * WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P683 ?chebi
}
Try it!

Data to curate[edit]

Chemical compound without InChIKey[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173
  MINUS {?compound wdt:P10718 [] }
  MINUS {?compound wdt:P235 [] }
Try it!

}

Chemical compound without PubChem CID[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173
  OPTIONAL {?compound wdt:P662 ?d }
  FILTER (!bound(?d))
}
Try it!

Chemical compound without CAS number[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173
  MINUS {?compound wdt:P231 [] }
}
Try it!

Chemical compound with InChI but without InChIKey[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P234 ?inchi
  OPTIONAL {?compound wdt:P235 ?d }
  FILTER (!bound(?d))
}
Try it!

Chemical compound with InChIKey but without PubChem CID and inverse[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P235 ?inchikey
  OPTIONAL {?compound wdt:P662 ?d }
  FILTER (!bound(?d))
}
Try it!
SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P662 ?pubchemcid
  OPTIONAL {?compound wdt:P235 ?d }
  FILTER (!bound(?d))
}
Try it!

Chemical compound with InChIKey but without PubChem CID[edit]

SELECT ?compound WHERE {
  ?compound wdt:P31 wd:Q11173 ;
            wdt:P235 ?pubchemcid ;

  OPTIONAL {?compound wdt:P662 ?d }
  FILTER (!bound(?d))
}
Try it!

SPARQL queries[edit]

...

Visualizations[edit]

CDK Depict[edit]

Toolforge has an running CDK Depict functionality at https://cdkdepict.toolforge.org/

It can be used via a Wikidata gadget with https://www.wikidata.org/wiki/User:Egon_Willighagen/cdkdepict_gadget.js

Image gallery of all elements (ordered by atomic number)[edit]

#defaultView:ImageGrid
SELECT DISTINCT ?element ?elementLabel ?pic ?atomicNumber
{
  ?element wdt:P31  wd:Q11344 ;           # element
           wdt:P1086 ?atomicNumber .      # atomic number
  OPTIONAL { ?element wdt:P18 ?pic }      # picture
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
}
ORDER BY ASC(?atomicNumber)
Try it!

Bubble chart of all elements by atomic mass[edit]

#defaultView:BubbleChart
SELECT DISTINCT ?element ?elementLabel (SAMPLE(?mass) AS ?oneMass)
{
  ?element wdt:P31  wd:Q11344 ;   # element
           wdt:P2067 ?mass .      # mass
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
}
GROUP BY ?element ?elementLabel
ORDER BY DESC(?oneMass)
Try it!

Timeline of the elements by the time of their discovery[edit]

#defaultView:Timeline
SELECT DISTINCT ?element ?elementLabel ?pic ?discoveryDate
{
  ?element wdt:P31  wd:Q11344 ;       # element
           wdt:P575 ?discoveryDate .  # date of discovery
  OPTIONAL { ?element wdt:P18 ?pic }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
}
ORDER BY ASC(?discoveryDate)
Try it!

Birthplaces of Chemistry Nobel Prize laureates (as a map)[edit]

#defaultView:Map
SELECT DISTINCT ?person ?geo ?personLabel
WHERE {
  ?person wdt:P166 wd:Q44585 ;    # Nobel Prize
          wdt:P19  ?birthplace .
  ?birthplace wdt:P625 ?geo .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de" }
}
Try it!

Ions and corresponding salts families[edit]

Ions Ion class Salt compound Acid Functional group Organic compound
ortho-arsenite ion (Q26841209), hydrogen ortho-arsenite ion (Q27109982), dihydrogen ortho-arsenite ion (Q27109981) ? arsenite (Q10859825) arsenous acid (Q423271) ?
meta-arsenite ion (Q31214357) ?
pyro-arsenite ion (Q31214521) ?
arsenate ion (Q409221), hydrogen arsenate ion (Q33127651), dihydrogen arsenate ion (Q33127654) - arsenic acid (Q413334)
ferrate(V) ion (Q27114050) ? ferrates (Q958387) ?
ferrate(VI) ion (Q31208817) ?
perchlorate ion (Q407189) - ? ?
perbromate ion (Q27109984) - perbromate (Q416884) ?
periodate ion (Q27104724) - periodate (Q417139) ?
chlorate ion (Q217813) - ? chloric acid (Q138809)
bromate ion (Q414591) - ? bromic acid (Q411320)
iodate ion (Q27109976) - iodate (Q415631) iodic acid (Q408822)
chlorite ion (Q593248) - ? chlorous acid (Q407495)
bromite ion (Q27109986) - bromite (Q909411) bromous acid (Q419597)
ortho-borate ion (Q27109582), hydrogen ortho-borate ion (Q31214752), dihydrogen ortho-borate ion (Q31214802) ? borate (Q421726) orthoboric acid (Q187045)
metaborate (Q31215787)
tetraborate ion (Q27118019), hydrogen tetraborate ion (Q31215410) tetraboric acid (Q27270672)
sulfate ion (Q172290), hydrogen sulfate ion (Q3143743) - sulfate (Q25997675) sulfuric acid (Q4118) sulfate ester (Q1072576)
chromate ion (Q355615), hydrogen chromate ion (Q27115576) ? chromate (Q26933712) chromic acid (Q422642)
dichromate ion (Q27115574), hydrogen dichromate ion (Q27115575) ? dichromate (Q7279832) dichromic acid (Q905857)
permanganate ion (Q410407) - permanganic acid (Q2823298) ?
manganate ion (Q27109867), hydrogen manganate ion (Q27116426) ? manganate (Q2542778) manganic acid (Q18213351) ?
pertechnetate ion (Q27088304) - pertechnetate (Q1632520) pertechnetic acid (Q2657198) ?
technetate ion (Q32040060) - ?
tetraoxorhenate(1-) (Q27104731) - perrhenate (Q12139897) perrhenic acid (Q2710669) ?
rhenate ion (Q27117077), hydrogen rhenate ion (Q32677170) ? tetraoxorhenic(VI) acid (Q32851031)
carbonate (Q181699), bicarbonate ion (Q409202) ? carbonic acid (Q104334)
silicate(4-) (Q27109980), hydrogen orthosilicate ion (Q27120991), dihydrogen orthosilicate ion (Q27120997),trihydrogen orthosilicate ion (Q27121005) ? orthosilicate (Q18358351) orthosilicic acid (Q422843)
silicate(2−) (Q32854872), hydrogen metasilicate ion (Q32854973) ? metasilicate (Q6823230) metasilicic acid (Q3604536)
nitrate ion (Q182168) ? nitric acid (Q83320) nitrate ester (Q4321642)
peroxynitrate ion (Q27109996) ? peroxynitrate (Q7169509) peroxynitric acid (Q1285205)
orthonitrate ion (Q32947535) ? orthonitrate (Q2482258) orthonitric acid (Q32947549)
nitrite ion (Q213788) ? nitrous acid (Q211891) nitrite ester (Q16683253)
peroxynitrite ion (Q419130) ? peroxynitrous acid (Q7169514)
nitroxylate ion (Q33037564) ? nitroxylic acid (Q30593849)
hyponitrite(2-) ion (Q3818494), hydrogen hyponitrite ion (Q27104749) ? hyponitrous acid (Q7774)
phosphate(3−) ion (Q177811), hydrogen phosphate ion (Q33127597), dihydrogenphosphate ion (Q27093789) ? phosphoric acid (Q184782) organophosphate (Q411097)
metaphosphate ion (Q33127604) ? metaphosphate (Q412611) metaphosphoric acid (Q2622702)
phosphonate ion (Q27098588), hydrogen phosphonate ion (Q27115658) ? phosphorous acid (Q407743) phosphonate (Q422733)
hypophosphite ion (Q3305467) ? hypophosphorous acid (Q409658) phosphinate ester (Q2036402)

Chemical element and corresponding simple substance[edit]

Wikidata overview:
Chemical element and its simple substances(view this table)
chemical element (Q11344) allotrope (Q21198401) of (E) (E) atomic item simple substance (Q2512777) or allotrope (Q21198401)
not isotopically determined
Isotopic substance Irrelevant item
 
0 neutronium (Q1195471)
[fictional entity (Q14897293)]
WLH · Scholia
1 H hydrogen (Q556) WLH · Scholia
  1. dihydrogen (Q3027893) diatom
         H₂ · hydrogen
  1. ditritium (Q54973755)
         H₂ · tritium
  2. diprotium (Q121336432)
         H₂ ·
  3. dideuterium (Q6419441)
         H₂ ·
  4. hydrogen deuteride (Q1444906)
         HD · deuterium, protium
  5. tritium deuteride (Q121336691)
         H₂ ·
  6. tritium hydride (Q27109978)
         H₂ ·
2 He helium (Q560) WLH · Scholia
  1. helium dimer (Q19904197) diatom
         He₂ · helium
  2. helium trimer (Q19904198)
         He₃ · helium, helium atom
3 Li lithium (Q568) allotrope of lithium (Q113195802)
Scholia
  1. dilithium (Q1189242) AL, diatom
         Li₂ · lithium
4 Be beryllium (Q569) WLH · Scholia
5 B boron (Q618) allotrope of boron (Q4733226)
Scholia
  1. borophene (Q15916419) AL
          ·
  2. borospherene (Q17401981) AL
         B₄₀ · boron
  3. α-rhombohedral boron (Q113028160) AL
         B₁₂ ·
  4. α-tetragonal boron (Q113028447) AL
         B₅₀ ·
  5. β-rhombohedral boron (Q113027916) AL
         B₁₀₅ ·
  6. β-tetragonal boron (Q113028551) AL
         B₁₉₂ ·
  7. γ-boron (Q113028684) AL
         B₂₈ ·
6 C carbon (Q623) allotrope of carbon (Q622460)
Scholia
  1. graphite (Q5309) AL
         C · carbon
  2. diamond (Q5283) AL
         C · carbon
  3. carbon nanotube (Q1778729) AL
          ·
  4. fullerene (Q178026) AL
          ·
  5. buckminsterfullerene (Q1075376) AL
         C₆₀ · carbon
  6. lonsdaleite (Q411827) AL
         C ·
  7. glassy carbon (Q419818) AL
          ·
  8. graphyne (Q419932) AL
          ·
  9. chaoite (Q424094) AL
         C ·
  10. carbon nanobud (Q428745) AL
          · carbon nanotube, fullerene
  11. amorphous carbon (Q798012) AL
          ·
  12. carbon nanofoam (Q866226) AL
          ·
  13. cyclocarbon (Q5198677) AL
          ·
  14. cyclo[18]carbon (Q66480924) AL
         C₁₈ ·
  15. compressed glassy carbon (Q37663457) AL
          ·
  16. Q-carbon (Q21601948) AL
          ·
  17. linear acetylenic carbon (Q11680524) AL
          ·
  18. superdense carbon allotrope (Q7643245) AL
          ·
  19. AA'-graphite (Q49001412) AL
          · carbon
  20. graphene (Q169917) AL
          · carbon
  21. tricarbon (Q866582) AL
         C₃ · carbon
  22. cyclopropatriene (Q866198) theoretically
         C₃ ·
7 N nitrogen (Q627) allotrope of nitrogen (Q56271974)
Scholia
  1. dinitrogen (Q2370426) AL, diatom
         N₂ · nitrogen, triple bond
  2. tetranitrogen (Q7706620) AL
         N₄ ·
  3. cyclic trinitrogen (Q1661369) AL
         N₃ ·
  4. octaazacubane (Q10892263) AL
         N₈ ·
  5. hexazine (Q5748970) AL, hypothetical
         N₆ ·
8 O oxygen (Q629) allotrope of oxygen (Q428653)
Scholia
  1. dioxygen (Q5203615) AL, diatom
         O₂ · oxygen
  2. ozone (Q36933) AL
         O₃ · oxygen
  3. tetraoxygen (Q457709) AL
         O₄ ·
  4. octaoxygen (Q16583951) AL
         O₈ · oxygen atom
  5. cyclic ozone (Q3359226) theorised only
         O₃ · oxygen
9 F fluorine (Q650) phases of fluorine (Q17146291)
Scholia
  1. difluorine (Q1963030) diatom (no AL?)
         F₂ · fluorine
  2. α-fluorine (Q113366524) AL
          ·
  3. β-fluorine (Q113366688) AL
          ·
10 Ne neon (Q654) WLH · Scholia
11 Na sodium (Q658) WLH · Scholia
  1. disodium (Q83050915) diatom
         Na₂ · sodium
12 Mg magnesium (Q660) WLH · Scholia
13 Al aluminium (Q663) WLH · Scholia
14 Si silicon (Q670) allotrope of silicon (Q107157182)
Scholia
  1. silicene (Q4419229) AL
         Si · silicon
  2. penta-silicene (Q48998511) AL
          ·
  3. silicyne (Q17080810) AL
          ·
  4. silicon nanotube (Q7515027)
          ·
  5. monocrystalline silicon (Q3960534)
         Si · silicon
  6. nanocrystalline silicon (Q3960533) AL
          · silicon
  7. polycrystalline silicon (Q737038)
          · silicon
  8. amorphous silicon (Q474163) AL
         S · silicon
15 P phosphorus (Q674) allotrope of phosphorus (Q14714096)
Scholia
  1. diphosphorus (Q3028867) AL, diatom
         P₂ · phosphorus
  2. white phosphorus (Q457515) AL
         P₄ · phosphorus
  3. red phosphorus (Q457556) AL
         P · phosphorus
  4. black phosphorus (Q11682015) AL
         P ·
  5. Hittorf's violet phosphorus (Q89689959) AL
          · phosphorus
  6. hexaphosphinine (Q82458773) AL
         P₆ ·
  7. phosphorene (Q15679103) AL
          ·
16 S sulfur (Q682) allotrope of sulphur (Q1094078)
Scholia
  1. disulfur (Q5283603) AL< diatom
         S₂ · sulfur
  2. trisulfur (Q7844240)
         S₃ · sulfur
  3. hexasulfur (Q5748936) AL
         S₆ · sulfur
  4. octasulfur (Q7076759) AL
         S₈ · sulfur
  5. clinosulphur (Q4024650) mineral
         S · sulfur
17 Cl chlorine (Q688) WLH · Scholia
  1. dichlorine (Q1904422) diatom
         Cl₂ · chlorine
18 Ar argon (Q696) WLH · Scholia
19 K potassium (Q703) WLH · Scholia
20 Ca calcium (Q706) WLH · Scholia
21 Sc scandium (Q713) WLH · Scholia
22 Ti titanium (Q716) WLH · Scholia
23 V vanadium (Q722) WLH · Scholia
24 Cr chromium (Q725) WLH · Scholia
  1. chromium (native) (Q3698320) mineral
         Cr · chromium
25 Mn manganese (Q731) allotrope of manganese (Q116486092)
Scholia
  1. α-manganese (Q116486242) AL
         Mn · manganese
  2. β-manganese (Q116486272) AL
         Mn · manganese
  3. γ-manganese (Q116486277) AL
         Mn · manganese
  4. δ-manganese (Q116486285) AL
         Mn · manganese
26 Fe iron (Q677) allotrope of iron (Q646981)
Scholia
  1. ferrite (Q489843) AL
          ·
  2. austenite (Q113365321) AL, γ-Fe
          · iron
  3. delta-iron (Q113365671) AL, δ-Fe
          ·
  4. hexaferrum (Q5748724) ε-Fe, high-P only
          ·
  5. telluric iron (Q2248028)
         Fe · iron
27 Co cobalt (Q740) WLH · Scholia
28 Ni nickel (Q744) WLH · Scholia
29 Cu copper (Q753) WLH · Scholia
30 Zn zinc (Q758) WLH · Scholia
31 Ga gallium (Q861) WLH · Scholia
32 Ge germanium (Q867) WLH · Scholia
  1. germanene (Q18043425)
         Ge · germanium
33 As arsenic (Q871) allotrope of arsenic (Q103608080)
Scholia
  1. tetraarsenic (Q112732425) AL
         As₄ · arsenic
  2. gray arsenic (Q112732563) AL
          · arsenic
  3. black arsenic (Q112732594) AL
          · arsenic
34 Se selenium (Q876) WLH · Scholia
  1. selenium (Q3954747) mineral
         Se · selenium
35 Br bromine (Q879) WLH · Scholia
  1. dibromine (Q2685750) diatom
         Br₂ · bromine
36 Kr krypton (Q888) WLH · Scholia
37 Rb rubidium (Q895) WLH · Scholia
  1. dirubidium (Q25387541) diatom
          · rubidium
38 Sr strontium (Q938) WLH · Scholia
39 Y yttrium (Q941) WLH · Scholia
40 Zr zirconium (Q1038) WLH · Scholia
41 Nb niobium (Q1046) WLH · Scholia
42 Mo molybdenum (Q1053) WLH · Scholia
  1. dimolybdenum (Q27117076) diatom
         Mo₂ · molybdenum
43 Tc technetium (Q1054) WLH · Scholia
44 Ru ruthenium (Q1086) WLH · Scholia
  1. ruthenium (native) (Q3942959) native mineral
         Ru · ruthenium
45 Rh rhodium (Q1087) WLH · Scholia
46 Pd palladium (Q1089) WLH · Scholia
  1. platinum as an investment (Q27882222) XPD currency 'as investment'
          ·
47 Ag silver (Q1090) WLH · Scholia
  1. native silver (Q1057174) native mineral
         Ag · silver
  2. silver nanoparticle (Q905762) class of
          · silver
  3. silver as an investment (Q1584286) pure silver; XAG currency
         Ag · silver
48 Cd cadmium (Q1091) WLH · Scholia
  1. cadmium (native) (Q3649475) native
          ·
49 In indium (Q1094) WLH · Scholia
50 Sn tin (Q1096) allotrope of tin (Q112708119)
Scholia
  1. gray tin (Q81885483) AL
          ·
  2. white tin (Q7995705) AL
          ·
  3. stanene (Q15712277) AL
          · tin
51 Sb antimony (Q1099) WLH · Scholia
  1. explosive antimony (Q28456311)
          · antimony
52 Te tellurium (Q1100) WLH · Scholia
53 I iodine (Q1103) WLH · Scholia
  1. diiodine (Q2064483) diatom
         I₂ · iodine
  2. iodine (native) (Q19862087) native
         I₂ · iodine
54 Xe xenon (Q1106) WLH · Scholia
55 Cs caesium (Q1108) WLH · Scholia
56 Ba barium (Q1112) WLH · Scholia
57 La lanthanum (Q1801) WLH · Scholia
58 Ce cerium (Q1385) WLH · Scholia
59 Pr praseodymium (Q1386) WLH · Scholia
60 Nd neodymium (Q1388) WLH · Scholia
61 Pm promethium (Q1809) WLH · Scholia
62 Sm samarium (Q1819) WLH · Scholia
63 Eu europium (Q1396) WLH · Scholia
64 Gd gadolinium (Q1832) WLH · Scholia
65 Tb terbium (Q1838) WLH · Scholia
66 Dy dysprosium (Q1843) WLH · Scholia
67 Ho holmium (Q1846) WLH · Scholia
68 Er erbium (Q1849) WLH · Scholia
69 Tm thulium (Q1853) WLH · Scholia
70 Yb ytterbium (Q1855) WLH · Scholia
71 Lu lutetium (Q1857) WLH · Scholia
72 Hf hafnium (Q1119) WLH · Scholia
73 Ta tantalum (Q1123) WLH · Scholia
74 W tungsten (Q743) allotrope of tungsten (Q113293735)
Scholia
  1. α-tungsten (Q113293713) AL
          · tungsten
  2. β-tungsten (Q113293930) AL
          · tungsten
75 Re rhenium (Q737) WLH · Scholia
76 Os osmium (Q751) WLH · Scholia
77 Ir iridium (Q877) WLH · Scholia
78 Pt platinum (Q880) WLH · Scholia
  1. platinum as an investment (Q691671) pure Pt; XPT currency
          ·
79 Au gold (Q897) WLH · Scholia
  1. gold as an investment (Q791975) pure gold; XAU currency
         Au · gold, Q10567211
80 Hg mercury (Q925) WLH · Scholia
  1. mercury (native) (Q1250358) native
         Hg · mercury
81 Tl thallium (Q932) WLH · Scholia
82 Pb lead (Q708) WLH · Scholia
  1. plumbene (Q65072591) nano
          ·
83 Bi bismuth (Q942) WLH · Scholia
84 Po polonium (Q979) WLH · Scholia
85 At astatine (Q999) WLH · Scholia
86 Rn radon (Q1133) WLH · Scholia
87 Fr francium (Q671) WLH · Scholia
88 Ra radium (Q1128) WLH · Scholia
89 Ac actinium (Q1121) WLH · Scholia
90 Th thorium (Q1115) WLH · Scholia
91 Pa protactinium (Q1109) WLH · Scholia
92 U uranium (Q1098) WLH · Scholia
93 Np neptunium (Q1105) WLH · Scholia
94 Pu plutonium (Q1102) allotrope of plutonium (Q4733227)
Scholia
  1. α-plutonium (Q113089454) AL
         Pu · plutonium
  2. β-plutonium (Q113089542) AL
         Pu · plutonium
  3. γ-plutonium (Q113089576) AL
         Pu · plutonium
  4. δ-plutonium (Q113089597) AL
         Pu · plutonium
  5. δ’-plutonium (Q113089626) AL
         Pu · plutonium
  6. ε-plutonium (Q113089667) AL
         Pu · plutonium
  7. ζ-plutonium (Q113190537) AL, spec circumstances
         Pu · plutonium
95 Am americium (Q1872) WLH · Scholia
96 Cm curium (Q1876) WLH · Scholia
97 Bk berkelium (Q1882) WLH · Scholia
98 Cf californium (Q1888) WLH · Scholia
99 Es einsteinium (Q1892) WLH · Scholia
100 Fm fermium (Q1896) WLH · Scholia
101 Md mendelevium (Q1898) WLH · Scholia
102 No nobelium (Q1901) WLH · Scholia
103 Lr lawrencium (Q1905) WLH · Scholia
104 Rf rutherfordium (Q1226) WLH · Scholia
105 Db dubnium (Q1232) WLH · Scholia
106 Sg seaborgium (Q1234) WLH · Scholia
107 Bh bohrium (Q1249) WLH · Scholia
108 Hs hassium (Q1252) WLH · Scholia
109 Mt meitnerium (Q1258) WLH · Scholia
110 Ds darmstadtium (Q1266) WLH · Scholia
111 Rg roentgenium (Q1272) WLH · Scholia
112 Cn copernicium (Q1278) WLH · Scholia
113 Nh nihonium (Q1301) WLH · Scholia
114 Fl flerovium (Q1302) WLH · Scholia
115 Mc moscovium (Q1303) WLH · Scholia
116 Lv livermorium (Q1304) WLH · Scholia
117 Ts tennessine (Q1306) WLH · Scholia
118 Og oganesson (Q1307) WLH · Scholia
119 Uue ununennium (Q1139)
[E119]
WLH · Scholia