Periodic Table Skill
Provides detailed chemical element information including atomic properties, electron configurations, and physical characteristics.
Usage
python3 -c "
elements = {'H': (1, 1.008, 'Hydrogen'), 'He': (2, 4.003, 'Helium'), 'C': (6, 12.011, 'Carbon')}
e = elements['C']
print(f'{e[2]}: Atomic # {e[0]}, Mass {e[1]} u')
"
Examples
- "Tell me about Carbon" -> Shows atomic number, mass, configuration, and properties
- "What group is Sodium in?" -> Identifies group 1, alkali metals, with properties
- "Compare Iron and Copper" -> Side-by-side element property comparison
Guidelines
- Include atomic number, mass, and electron configuration
- Note common oxidation states and uses
- Group elements by their periodic table position for context