MHB Computation of bond angles and other angles in tetrahedral

AI Thread Summary
The bond angle of 109.5° in tetrahedral molecules like CH4 and NH4+ is derived from the geometric arrangement of points in a tetrahedron. By using vector mathematics, specifically the dot product, the angle between two bonds can be calculated. The coordinates of the tetrahedron's vertices are used to determine the angle, resulting in the formula that yields 109.5°. This method can also be applied to compute other angles in tetrahedral structures. Understanding these calculations is essential for grasping molecular geometry.
WMDhamnekar
MHB
Messages
376
Reaction score
28
Hello,
I didn't understand the geometry of molecules in which central atom has no lone pairs of electrons. for example, in $CH_4, NH_4^+$ molecular shape is tetrahedral and bond angle is $109.5^\circ$. How is that bond angle computed? $CH_4$ stands for liquid methane and $NH_4^+$ is a polyatomic cation. Now my other question involve mathematics as well.

If i want to compute other angles of this tetrahedral, how can i compute it?

If any member knows the answer to these question, may reply.
 
Mathematics news on Phys.org
Dhamnekar Winod said:
Hello,
I didn't understand the geometry of molecules in which central atom has no lone pairs of electrons. for example, in $CH_4, NH_4^+$ molecular shape is tetrahedral and bond angle is $109.5^\circ$. How is that bond angle computed? $CH_4$ stands for liquid methane and $NH_4^+$ is a polyatomic cation.Now my other question involve mathematics as well.

If i want to compute other angles of this tetrahedral, how can i compute it?

If any member knows the answer to these question, may reply.

Hi,

I got the answer to the question how is $109.5^\circ$ angle between all the bonds in tetrahedral structure computed.
 
Dhamnekar Winod said:
Hi,

I got the answer to the question how is $109.5^\circ$ angle between all the bonds in tetrahedral structure computed.
Here is one way to do it.

First consider that the points (+1,+1,+1), (+1,-1,-1), (-1,+1,-1), (-1,-1,+1) span a regular tetrahedron with its center at the origin.
\begin{tikzpicture}
%preamble \usepackage{tikz-3dplot}
\tdplotsetmaincoords{80}{110}
\begin{scope}[scale=3,tdplot_main_coords]
\coordinate[label=below:O] (O) at (0,0,0);
\coordinate[label=A] (A) at (+1,+1,+1);
\coordinate[label=left:B] (B) at (+1,-1,-1);
\coordinate[label=right:C] (C) at (-1,+1,-1);
\coordinate[label=D] (D) at (-1,-1,+1);

\draw[-latex] (O) -- (1,0,0) node[ left ] {x};
\draw[-latex] (O) -- (0,1,0) node[ right ] {y};
\draw[-latex] (O) -- (0,0,1) node[ above ] {z};

\draw[help lines] (-1,1,1) -- (-1,-1,1) -- (1,-1,1);
\draw[help lines] (1,1,-1) -- (-1,1,-1) -- (-1,1,1) -- (1,1,1);
\draw[help lines] (0,-1,1) -- (0,1,1) -- (0,1,-1);
\draw[help lines] (1,1,1) -- (1,-1,1) -- (1,-1,-1) -- (1,1,-1) -- cycle;
\draw[help lines] (1,-1,0) -- (1,1,0) -- (-1,1,0) (1,0,-1) -- (1,0,1) -- (-1,0,1);
\draw[dotted] (C) -- (D);
\draw[dashed] (O) -- (A);
\draw[dashed] (O) -- (B);
\draw[dashed] (O) -- (C);
\draw[dashed] (O) -- (D);
\draw[thick] (B) -- (C) -- (A) -- (D) -- (B);
\draw[ultra thick] (A) -- (B);
\end{scope}
\end{tikzpicture}

The angle between 2 bonds is $\phi=\angle AOB$.
We can calculate the angle $\phi$ from the definition of the dot product:
\[ \overrightarrow{OA} \cdot \overrightarrow{OB} = OA\cdot OB \cdot \cos\phi \\
\cos\phi = \frac{\overrightarrow{OA} \cdot \overrightarrow{OB}}{OA\cdot OB} = \frac{(+1,+1,+1)\cdot(+1,-1,-1)}{\|(+1,+1,+1)\|\cdot \|(+1,-1,-1)\|} = \frac{-1}{\sqrt 3\cdot \sqrt 3} = -\frac 13 \\
\phi=\arccos\left(-\frac 13\right)\approx 109.5^\circ \]
 
Last edited:
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Back
Top