Organic Chemistry
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Organic Chemistry is the study of the structure, properties, composition, reactions, and preparation of carbon-containing compounds. While it was originally thought to only describe substances from living organisms (hence "organic"), it now encompasses millions of synthetic materials, including plastics, drugs, fuels, and food additives. Carbon is unique because it can form four stable bonds with other atoms—especially hydrogen, oxygen, and nitrogen—allowing it to build the complex "skeletons" of life. From the simple methane molecule to the intricate structure of DNA, organic chemistry is the science of building with carbon.
Remembering
- Organic Chemistry — The study of carbon-containing compounds.
- Hydrocarbon — An organic compound consisting entirely of hydrogen and carbon (e.g., Alkanes, Alkenes).
- Functional Group — A specific group of atoms within a molecule that is responsible for its characteristic chemical reactions (e.g., Alcohols, Carboxylic Acids).
- Isomer — Molecules with the same chemical formula but different structural arrangements (e.g., butane vs. isobutane).
- Covalent Bond — A chemical bond that involves the sharing of electron pairs between atoms.
- Alkane — Saturated hydrocarbons with only single bonds (e.g., Methane, Propane).
- Alkene — Unsaturated hydrocarbons containing at least one carbon-carbon double bond (e.g., Ethylene).
- Alkyne — Unsaturated hydrocarbons containing at least one carbon-carbon triple bond (e.g., Acetylene).
- Aromatic Compound — Compounds containing a benzene ring (a stable ring of six carbon atoms).
- Polymer — A large molecule made of many repeating sub-units (monomers) (e.g., Plastic, Protein).
- Nucleophile — An "electron-rich" atom or molecule that donates an electron pair to form a bond.
- Electrophile — An "electron-poor" atom or molecule that accepts an electron pair to form a bond.
- Chirality — A property of asymmetry where a molecule cannot be superimposed on its mirror image ("handedness").
- Saponification — The chemical reaction that produces soap from fats and a strong base.
Understanding
The power of organic chemistry lies in the versatility of the carbon atom and its functional groups.
- The Carbon Scaffold**: Carbon can form single, double, and triple bonds, and can link into long chains or rings. This allows for an almost infinite variety of "shapes," each with different properties.
- **Saturated** (Alkanes) vs **Unsaturated** (Alkenes/Alkynes): Saturated fats (like butter) have only single bonds and are solid at room temp; unsaturated fats (like oil) have double bonds and are liquid.
- Functional Groups (The "Personality" of the Molecule)**:
- **-OH (Hydroxyl)**: Makes a molecule an alcohol (e.g., Ethanol).
- **-COOH (Carboxyl)**: Makes it an acid (e.g., Vinegar).
- **-NH2 (Amino)**: A building block of proteins.
Just changing one functional group can turn a medicine into a poison.
- Reaction Mechanisms**: Organic chemists don't just see the "before" and "after"; they see the "pathway." They track the movement of electrons (using "curly arrows") during a reaction. The most common reactions are **Addition**, **Elimination**, and **Substitution** (like the famous SN1 and SN2 reactions).
Applying
Naming Alkanes (IUPAC Logic): <syntaxhighlight lang="python"> def name_alkane(num_carbons):
"""
Shows the systematic naming of straight-chain saturated hydrocarbons.
Formula: C(n)H(2n+2)
"""
prefixes = {1: 'Meth', 2: 'Eth', 3: 'Prop', 4: 'But', 5: 'Pent', 6: 'Hex'}
if num_carbons in prefixes:
name = prefixes[num_carbons] + "ane"
h_atoms = 2 * num_carbons + 2
return f"C{num_carbons}H{h_atoms} -> {name}"
return "Unknown Prefix"
print(name_alkane(1)) print(name_alkane(4))
- IUPAC naming allows chemists to know exactly what a
- molecule looks like just from its name.
</syntaxhighlight>
- Organic Chemistry in Life
- Medicinal Chemistry → Designing molecules like Ibuprofen or Penicillin to fit perfectly into biological receptors.
- Petrochemicals → Refining crude oil into gasoline, diesel, and the precursors for almost all plastics.
- Food Chemistry → Creating artificial flavors, preservatives, and fats.
- Agriculture → Developing pesticides and fertilizers to increase crop yields.
Analyzing
| Group | Structure | Name Ending | Example |
|---|---|---|---|
| Alcohol | -OH | -ol | Methanol |
| Aldehyde | -CHO | -al | Formaldehyde |
| Ketone | -C=O | -one | Acetone |
| Carboxylic Acid | -COOH | -oic acid | Acetic Acid (Vinegar) |
| Ester | -COO- | -oate | Ethyl Acetate (Pear smell) |
- The Importance of Shape (Stereochemistry)**: Two molecules can have the same atoms and the same bonds, but if they are "mirror images" (Enantiomers), they can have drastically different effects. A famous tragic example is **Thalidomide**: one version treated morning sickness, but its mirror image caused severe birth defects. This highlights why "chirality" is a life-or-death concept in drug design.
Evaluating
Evaluating organic synthesis: (1) **Atom Economy**: How much of the starting material actually ends up in the final product? (2) **Selectivity**: Does the reaction produce only the desired molecule, or a mess of byproducts? (3) **Green Chemistry**: Can the reaction be done without toxic solvents or high energy? (4) **Yield**: Is the process efficient enough for industrial mass production?
Creating
Future Frontiers: (1) **Bio-orthogonal Chemistry**: Performing chemical reactions inside living cells without disrupting their normal functions (2022 Nobel Prize). (2) **Organic Electronics**: Developing flexible screens and solar cells made of organic polymers instead of silicon. (3) **Automated Synthesis**: Using AI and robotics to "discover" and build new molecules thousands of times faster than a human. (4) **Plastic-Eating Enzymes**: Engineering organic catalysts that can break down synthetic polymers back into their original monomers for true recycling.