Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chemistry Bond Energy #1

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 67 additions & 5 deletions Chemistry I/Bond Energy/Bond Energy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,81 @@
title: Combustion 1`\\\large{Bond Energy}`{=latex}
author: Avi Mehra
date: February 7, 2021
pset: true
worksheet: true
package:
- parskip
toc: true
---

# Atomic Radii

We often treat individual atoms as spherical entities.
We often treat individual atoms as spherical entities, where the border roughly represents the electron cloud.
While it isn't strictly true, this simplification provides motivation for studying chemical reactions using the notion of distance.

Recall that a sphere is uniquely defined by the length of its radius, the line segment from its center to any point on its boundary.
Recall that a sphere is uniquely defined by the length of its radius, the line segment from its center to any point on its boundary (see Figure\ \ref{fig:radius}).

![Two radii of a sphere are shown.
Note that they have the same length.
\cite{Sphere_and_Ball}](images/Sphere_and_Ball.png)
Note that they have the same length.\ \cite{Sphere_and_Ball}](images/Sphere_and_Ball.png){#fig:radius}

::: defboxed
When we treat an atom as a sphere, its _atomic radius_ is the radius of that sphere.
:::

We already know that certain atoms have different "sizes."
The concept of atomic radii makes this precise:
different elements—and even different atoms of the same element—have different atomic radii.

# Bond Length {#sec:bond-length}

Consider two atoms bonded together.
By virtue of being bonded, their spheres are right next to each other (_adjacent_) in physical space.
Then, as in Figure\ \ref{fig:adjacent}, the distance between the centers of these two atoms is just the sum of the atomic radii.[^overlap]

[^overlap]:
This is another simplification.
It is entirely reasonable for the spheres to overlap;
this happens as a result of, for example, shared electron pairs due to covalent bonding.
It also may be the case that there is a small gap between the spheres.
Regardless, we should expect that the distance between the spheres is relatively close to the sum of the atomic radii.

::: figure
\centering
\input{images/adjacent-spheres.tikz}
\caption{Two adjacent spheres.
The distance between the centers is the sum of the individual radii.}
\label{fig:adjacent}
:::

## Why do we care about bond length?

Suppose you pull one of the two atoms from Section\ \ref{sec:bond-length} away so that they sit slightly further apart, and then you release it.
What would happen?

Well, as long as you didn't pull it so far apart that the atoms cannot interact, the atoms will tend towards the level of separation they started in.
The same would happen were you to have made them closer together.

The atoms in a bond sit at an equilibrium distance, due to certain cross-atomic forces cancelling out (_being equalized_).
Knowing the strength of this equilibrium (think of this as how much you are allowed to push or pull on the atoms as they stay bonded) tells us a lot about how much energy it takes to break the bond.

### Inter-atomic forces

So that we're not talking completely in the abstract, let's discuss the aforementioned cross-atomic forces.
For a more detailed view of these forces, including some of the mathematics involved, read the [electrostatics worksheet].

Atoms are composed of two types of charged subatomic particles: protons, which are positively charged, and electrons, which are negatively charged.
When two atoms are close enough, the particles in one atom can interact with the atoms in the other.

Recall that opposite charges attract and like charges repel.^[This is just a fancy way of saying that protons attract electrons, electrons attract protons, protons repel protons, and electrons repel electrons.]
This means that, as in Figure\ \ref{fig:attraction-repulsion}, there are some attractive forces and some repulsive forces between the atoms.
If you bring the atoms closer, you are significantly increasing the repulsive forces because you are reducing the distance between protons far more than the distance from electrons to protons.
Conversely, if you separate the atoms, you decrease repulsion far more than you decrease attraction.

![Protons repulse other protons, electrons repulse other electrons, protons attract electrons, and electrons attract protons.](images/attraction-repulsion.jpg){#fig:attraction-repulsion}

This explains why the equilibrium was _stable_;
no matter how you affected the distance, the atoms would try to self-correct.

\bibliographystyle{alpha}
\bibliography{ref}

[electrostatics worksheet]: https://pihart.github.io/worksheets/Chemistry%20I/Electrostatics/electrostatics.pdf
Binary file modified Chemistry I/Bond Energy/Bond Energy.pdf
Binary file not shown.
15 changes: 15 additions & 0 deletions Chemistry I/Bond Energy/images/adjacent-spheres.tikz
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
\begin{tikzpicture}
\coordinate (A) at (0, 0);
\draw (A) circle (1);

\coordinate (Kiss) at ({sqrt(3) / 2}, 1/2);

\coordinate (B) at ({3 / 2 * sqrt(3)}, 3/2);
\draw (B) circle (2);

\draw (A) -- (B);

\filldraw [gray] (A) circle (2pt);
\filldraw [gray] (B) circle (2pt);
\filldraw [gray] (Kiss) circle (2pt);
\end{tikzpicture}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Instructional worksheets for various introductory topics",
"main": "index.js",
"devDependencies": {
"tex": "github:pihart/tex#v4.0.0"
"tex": "github:pihart/tex#v5.1.1"
},
"scripts": {},
"repository": {
Expand Down