forked from digitalmoleculardesign/bill_goddard_chem_120
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchap06.tex
2577 lines (2341 loc) · 108 KB
/
chap06.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{GVB Model for Bonding, AH$_n$}
\section{Introduction}
In this chapter, we will start with the generalized valence bond (GVB)
description of an atom A. We also examine the geometries and states
of the various molecules, AH, AH$_2$, AH$_3$, and AH$_4$, in terms of
the atomic GVB orbitals. We find that this
description provides a useful qualitative model for understanding the
properties of these molecules.
For simplicity of presentation, we will use Si and its hydrides, SiH,
SiH$_2$, SiH$_3$, and SiH$_4$, as prototypes for outlining the various
concepts. These ideas will then be extended to other molecules, by
replacing Si with Na through Ar and Li, through Ne, and by replacing
H with halogens such as F and Cl.
Unless otherwise noted, experimental results are taken from reference
\cite{chap6-ref1} for atoms, from references \cite{chap6-ref2}, \cite{chap6-ref3}, and \cite{chap6-ref4} for diatomic molecules, and
from references \cite{chap6-ref5}, \cite{chap6-ref6}, and
\cite{chap6-ref7} for polyatomic molecules.
\section{SiH$_n$ Molecules}
\subsection{Ground State of Silicon Atom}
The ground state $({^3P})$ of atomic silicon, has the configuration
\begin{equation}
\underbrace{(1s)^2(2s)^2(2p)^6}_{core ~ electrons}
\underbrace{(3s)^2(3p)^2}_{valence ~ electrons}
\label{chap6-eqno1}
\end{equation}
The wavefunction corresponding to (\ref{chap6-eqno1}) is the
Hartree-Fock (HF) wavefunction
\begin{equation}
\psi_{HF} = {\cal A} \left[ \Phi_{core} \left( \phi_{3s} \alpha
\right) \left( \phi_{3s} \beta \right) \left( \phi_{3p_z} \alpha
\right) \left( \phi_{3p_y} \alpha \right) \right] ,
\label{chap6-eqno2}
\end{equation}
where
\begin{eqnarray}
\Phi_{core} &=&\left( \phi_{1s} \alpha \right) \left( \phi_{1s} \beta
\right) \left( \phi_{2s} \alpha \right) \left( \phi_{2s} \beta
\right) \left( \phi_{2p_x} \alpha \right)\cr
&& \times \left( \phi_{2p_x} \beta
\right) \left( \phi_{2p_y} \alpha \right) \left( \phi_{2p_y} \beta
\right) \left( \phi_{2p_z} \alpha \right) \left( \phi_{2p_z}
\beta \right)\cr
\label{chap6-eqno3}
\end{eqnarray}
${\cal A}$ is the antisymmetrizer, or determinant operator, and each
one-particle function is numbered in the sequence of its appearance,
e.g., $\phi_{3s}(1) \phi_{3p}(2)$. All orbitals in
(\ref{chap6-eqno2}) and (\ref{chap6-eqno3}) are understood to be
optimized self-consistently. The core orbitals are very compact,
relative to the valence orbitals and changes in the shape of core
orbitals upon formation of the molecule, and are insignificant. For
this reason, in the following discussion, we will consider only the
valence orbitals, although the core orbitals are present in the
calculations. Thus, (\ref{chap6-eqno2}) becomes
\begin{eqnarray}
\psi_{HF} &=& {\cal A} \left[ \left( \phi_s \alpha \right)
\left( \phi_s \beta \right) \left( \phi_{p_z} \alpha \right) \left(
\phi_{p_y} \alpha \right) \right]\cr
&=& {\cal A} \left[ \phi_s \phi_s \phi_{p_z} \phi_{p_y} \alpha \beta
\alpha \alpha \right],
\end{eqnarray}
where, for convenience, the $n = 3$ quantum number has been
suppressed, and the spatial and spin functions have been separated.
HF wavefunctions, such as (\ref{chap6-eqno2}), form the
theoretical foundation for the Aufbau model of atoms, as shown in
Chapter 5. However, HF wavefunctions are not adequate for
describing the formation and dissociation of covalent bond, as shown
in Chapter 3. The problem is that the two electrons associated with a
particular bond should be allowed to associate with different
fragments, radicals, as the bond is broken. Whereas in HF
wavefunctions, a bond pair consists of one doubly-occupied orbital,
and hence, cannot, in general, lead to the correct dissociated radical
species. The simplest wavefunction that removed this deficiency,
while retaining the proper spin symmetry and satisfying the Pauli
principle, is the GVB wavefunction. In the
GVB wavefunction, each valence electron is
allowed to have a different orbital and every orbital is optimized
self-consistently.
For the ground state of Si, the GVB wavefunction
has the form
\begin{eqnarray}
\psi_{GVB} &=& {\cal A} \left\{ \left[ \phi_{\bar{\ell}} (1)
\phi_{\bar{\ell}} (2) +
\phi_{\bar{\ell}} (1) \phi_{\bar{\ell}} (2) \right] \phi_{p_z} (3) \phi_{p_y}
(4)_ \alpha (1) \beta (2) \alpha (3) \alpha (4) \right\}\cr
&=& {\cal A} \left[ \left( \phi_{\ell} \phi_{\bar{\ell}} +
\phi_{\bar{\ell}} \phi_{\ell} \right)
\phi_{p_z} \phi_{p_y} \alpha \beta \alpha \alpha \right],
\label{chap6-eqno4}
\end{eqnarray}
where the orbitals are as shown in Figure \ref{chap6-fig1}. Here
$\phi_{p_z}$ and $\phi_{p_y}$ are almost identical to the
corresponding HF orbitals, but the HF $3s$ pair has been replaced by
two singly-occupied \emph{lobe orbitals}, $\phi_{\ell}$ and
$\phi_{\bar{\ell}}$.
\begin{figure}
\includegraphics[scale=0.75]{fig6-01}
\caption{Si(${^3P}$)orbitals. Long dashes indicate zero amplitude,
solid lines and short dashes indicate positive and negative amplitude,
with a space of 0.05 $a_0$ of amplitude between various contours. The
same convention is used for all other figures.}
\label{chap6-fig1}
\end{figure}
The lobe orbitals differ radically from the HF $3s$ orbital
in that one, $\phi_{\ell}$, is pooched, hybridized, in the positive $x$
direction, while the other, $\phi_{\bar{\ell}}$ is pooched in the negative $x$
direction. The result is that the motion of the two $3s$ electrons is
correlated such that they tend to stay apart while each remains close
to the nucleus.
There are several important points to be made about the lobe orbitals
of (\ref{chap6-eqno4}). These orbitals can be written as
\begin{eqnarray}
\phi_{\ell} &=& {(\phi_s + \lambda \phi_{p_x} ) \over \sqrt{1 +
\lambda^2}}\cr
\phi_{\bar{\ell}} &=& {( \phi_s - \lambda \phi_{p_x} ) \over \sqrt{1 +
\lambda^2}}
\label{chap6-eqno5}
\end{eqnarray}
where $\phi_s$ is nearly identical to the HF $3s$ orbital,
and $\phi_{p_x}$ is nearly identical to the $\phi_{p_y}$ and
$\phi_{p_z}$ orbitals of (\ref{chap6-eqno4}). From
(\ref{chap6-eqno5}) it can be seen that the hybridization, or
fractional $p$ character, of a lobe orbital is simply
${\lambda^2 \over (1 + \lambda^2)}$
and the overlap between the $\phi_{\ell}$ and $\phi_{\bar{\ell}}$ orbitals is
\begin{equation}
S_{\ell,{\bar{\ell}}} = s = {(1 - \lambda^2) \over (1 + \lambda^2)}
\end{equation}
or
\begin{equation}
\lambda^2 = {(1 - S) \over (1+S)} .
\end{equation}
For Si, $\lambda = 3.076$, and hence, the $\ell$ and ${\bar{\ell}}$ orbitals
have an overlap of 0.752, and each consists of about 14.2 percent
$p_x$ character.
Using (\ref{chap6-eqno5}), we find that
\begin{equation}
\left[ \phi_{\ell} \phi_{\bar{\ell}} + \phi_{\bar{\ell}} \phi_{\ell}
\right] = \left[ \phi_s \phi_s - \lambda^2 \phi_{p_x} \phi_{p_x} \right]
\left[ {2 \over (1 + \lambda^2)} \right] .
\label{chap6-eqno6a}
\end{equation}
and normalizing the right-hand side leads to
\begin{equation}
{\left[ \phi_s \phi_s - \lambda^2 \phi_{p_x} \phi_{p_x} \right] \over
\sqrt{1+ \lambda^4}}
\label{chap6-eqno6b}
\end{equation}
Thus, the wavefunction in which one electron is always in
$\phi_{\ell}$, while the other is always in $\phi_{\bar{\ell}}$ is
exactly equivalent to the wavefunction, in which both electrons are in
$\phi_s$ part of the time, fraction = $1/(1+ \lambda^4)$, and both are
in $\phi_{p_x}$ part of the time, fraction = $\lambda^4/(1+
\lambda^4)$. The left side of (\ref{chap6-eqno6a}) is referred to as
the \emph{generalized valence bond} orbitals. The right side of
(\ref{chap6-eqno6a}) is the \emph{natural orbital} (NO)
\emph{representation} of the
GVB wavefunction, and the orbitals, $\phi_s$ and
$\phi_{p_x}$, are referred to as \emph{natural orbitals}.
In order to satisfy the Pauli principle, a wavefunction of the form
(\ref{chap6-eqno6a}) must be combined with a single spin function,
$(\alpha \beta - \beta \alpha )$. Hence, (\ref{chap6-eqno6a}) is
referred to as singlet pairing of the two lobe orbitals. The
alternative combination
\begin{equation}
\left( \phi_{\ell} \phi_{\bar{\ell}} - \phi_{\bar{\ell}} \phi_{\ell}
\right) = \left(
\phi_s \phi_{p_x} - \phi_{p_x} \phi_s \right) \left[ {(-2 \lambda) \over (1+
\lambda^2)} \right]
\label{chap6-eqno7}
\end{equation}
is referred to as \emph{triplet pairing}, since the Pauli principle
requires a triplet spin function, e.g., $\alpha \alpha$, to be
associated with (\ref{chap6-eqno7}).
Comparing the right sizes of (\ref{chap6-eqno6a}) and
(\ref{chap6-eqno7}), we see that triplet pairing of $\ell$ and
$\bar{\ell}$ forces the wavefunction to have only one electron in the
$s$ orbital, while single pairing allows a much higher $s$ occupation,
${1 \over \sqrt{1+\lambda^4}}$.
The valence $s$ orbital penetrates the core region more effectively
than does the $p$ orbital, and is consequently less shielded from the
nuclear charge. Thus, the $s$ orbital is energetically more
favorable than the $p$ orbital, and as a result, atomic states in
which $\ell$ and $\bar{\ell}$ are singlet-paired are much lower in energy,
approximately 100 kcal, then those in which the lobes are
triplet-paired.
Schematically, we will represent the wavefunction in
(\ref{chap6-eqno6a}) as
\begin{equation}
\includegraphics[scale=0.75]{fig6-01a}
\end{equation}
where
\begin{equation}
% need an image of a lobe orbital here p 6.1-6
\end{equation}
indicates a lobe orbital, a dot indicates one electron, and the line
connecting the dots indicates singlet pairing of the two orbitals.
Similarly, we will represent the ground state wavefunction of
silicon, (\ref{chap6-eqno4}) as
\begin{equation}
\includegraphics[scale=0.75]{fig6-01b}
\label{chap6-eqno8}
\end{equation}
where
\begin{equation}
% need an image here p_z figure 8 p 6.1-6
\end{equation}
indicates the $p_z$ orbital, and
\begin{equation}
% need an image here p_y circle p 6.1-6
\end{equation}
indicates the $p_y$ orbital, pointing out of the plane of the paper.
\subsection{Low-Lying States of SiH}
Starting with the ground state orbitals of Si, (\ref{chap6-eqno8}),
and bonding an H to one of the singly-occupied Si orbitals, we obtain
two possible configurations. First, bonding the H to an Si $p$
orbital, leads to
\begin{equation}
\includegraphics[scale=0.75]{fig6-01c}
\label{chap6-eqno9}
\end{equation}
which is symbolic of the wavefunction
\begin{equation}
{\cal A} \left[ \left( \phi_{\ell} \phi_{\bar{\ell}} + \phi_{\bar{\ell}}
\phi_{\ell}
\right) \left( \phi_{p_z} \phi_\mathrm{H} + \phi_\mathrm{H} \phi_{p_z} \right)
\phi_{p_y} \alpha \beta \alpha \beta \alpha \right]
\end{equation}
and describes a ${^2\Pi}$ state. Second, bonding the H to an Si
lobe orbital, $\ell$ leads to
\begin{equation}
\includegraphics[scale=0.75]{fig6-01d}
\label{chap6-eqno10}
\end{equation}
which is symbolic for the wavefunction
\begin{equation}
{\cal A} \left[ \left( \phi_{\ell} \phi_\mathrm{H} + \phi_\mathrm{H}
\phi_{\ell} \right) \phi_{\bar{\ell}} \phi_{p_x} \phi_{p_y} \alpha
\beta \alpha \alpha \alpha \right]
\end{equation}
and describes a ${^4\Sigma}^-$ state. Throughout this chapter, we
will use symmetry labels such as ${^2\Pi}$, ${^4\Sigma}^-$, ${^3B}_1$,
${^1A}_1$, etc. The significance of the spatial symmetry, $\Pi,
\Sigma^-, B_1, A_1$, etc., will be of no importance other than
providing the label normally used to denote site. Appendix A contains
a discussion of these symmetry names, see this appendix for linear
molecules. The superscript is just $2S+1$, where $S$ is the spin. In
(\ref{chap6-eqno10}), we have relabelled the axes so that the SiH bond
is along the $z$ axis.
The three unpaired orbitals of (\ref{chap6-eqno10}),
$[\phi_{\bar{\ell}} , \phi_{p_x} , \phi_{p_y} ]$ can also be coupled
to form two doublet states. However, since these orbitals are
orthogonal, the state of highest spin, ${^4\Sigma}^-$, will be lowest
in energy. When the orbitals are orthogonal, the argument used for
Hund's rules in atoms show that the highest spin state is lowest,
maximum negative exchange integrals.
The self-consistently calculated optimum orbitals, at $R_e$, for the
wavefunctions in (\ref{chap6-eqno9}) and (\ref{chap6-eqno10}), are
shown in Figures \ref{chap6-fig2} and \ref{chap6-fig3}, respectively.
The similarity between the molecular GVB orbitals (Figures
\ref{chap6-fig2} and \ref{chap6-fig3}) and the corresponding atomic
GVB orbitals (Figure \ref{chap6-fig1}) shows this qualitative
description of the molecular states in terms of atomic orbitals, and
shows that this is accurate.
The simple GVB model, discussed above, predicts
two-lying states for SiH, the ${^2\Pi}$ states, and the ${^4\Sigma}^-$
state. In order to better understand the relative energies of these
two states, we must examine in more detail the bonding schemes
depicted in (\ref{chap6-eqno9}) and (\ref{chap6-eqno10}). There is,
of course, an intrinsic difference, about 15 kcal/mole, in the bond
energy of an H to a $p$ orbital, relative to the bond energy to a lobe
orbital. However, the major differential effects involve the
interaction of the H orbital with the orbitals not involved in the
bond. Considering first, the ${^2\Pi}$ state, (\ref{chap6-eqno9}),
the $\phi_\mathrm{H}$ orbital positioned so as to be optimum for bonding to
$\phi_{p_z}$ will overlap the two lobe orbitals, $\phi_{\ell}$ and
$\phi_{\bar{\ell}}$. The effect of the Pauli principle, i.e., the
determinant operator, is equivalent to forcing $\phi_\mathrm{H}$ to be
orthogonal to $\phi_{\ell}$ and $\phi_{\bar{\ell}}$. This raises the
total energy, and hence, decreases the bond energy. All orbitals
readjust to minimize this effect and, as seen in Figure
\ref{chap6-fig2}, the major result is that the lobe orbitals,
$\phi_{\ell}$ and $\phi_{\bar{\ell}}$, rotate away from the bond pair.
Thus, in the molecule, the angular of the lobe orbitals with respect
to the $z$ axis is$^8$ 128$^{\circ}$ compared with an angle of
90$^{\circ}$ for the free atom.
\begin{figure}
\includegraphics{fig6-02}
\caption{SiH $(^2\Pi)$ orbitals.}
\label{chap6-fig2}
\end{figure}
\begin{figure}
\includegraphics{fig6-03}
\caption{SiH $(^4\Sigma^-)$ orbitals.}
\label{chap6-fig3}
\end{figure}
Consider now the bonding scheme in the ${^4\Sigma}^-$ state of SiH,
(\ref{chap6-eqno10}). In the atom $\phi_{\ell}$ and
$\phi_{\bar{\ell}}$ are singlet-paired, and the optimum orbitals have
an overlap of 0.752, whereas in the molecular, the $\phi_{\ell}$
orbital is singlet-paired with $\phi_\mathrm{H}$. Again, because of the Pauli
principle, the $\phi_{\bar{\ell}}$ orbital of the molecule must become
orthogonal to the $(\phi_{\ell} , \phi_\mathrm{H})$ bond orbitals, leading to
an increase in the total energy of this state. This repulsive effect,
resulting from the unpairing of the $(\phi_{\ell} ,
\phi_{\bar{\ell}})$ orbitals, leads to a new bond energy much smaller
than the intrinsic bond energy for the lobe orbital. In the optimized
wavefunction, the bond and nonbonding orbitals have readjusted to
minimize the repulsive interaction, leading to the GVB
orbitals shown in Figure \ref{chap6-fig3}.
In conclusion, the atomic origins of the self-consistent GVB
orbitals of both the ${^2\Pi}$ and ${^4\Sigma}^-$
states, is clearly recognizable. In particular, the bond pair of
the ${^4\Sigma}^-$ state involves an Si-centered orbital that is more
lobe-like than the Si-centered bond orbital of the ${^2\Pi}$ state.
Including all effects, the bond of an H to a $p$ orbital of Si,
forming the ${^2\Pi}$ state, is 70 kcal, while the bonding to a
lobe orbital is 35 kcal. However, it should be emphasized that the
weakness of the lobe bond, relative to the $p$ bond, is due almost
entirely to the energy required to uncouple the atomic $(\ell ,
{\bar{\ell}})$ pair, as described.
\subsection{Low-lying States of SiH$_2$}
Consider now, the state of SiH$_2$ that result from bonding a hydrogen
to the ground state of SiH,
\begin{equation}
\includegraphics[scale=0.75]{fig6-03a}
\label{chap6-eqno11}
\end{equation}
Just as for SiH, we can form a strong bond to either the unpaired Si
$p$ orbital, or to one of the paired lobe orbitals. Bonding the H to
the $p$ orbital, $(p_y)$, leads to the ${^1A}_1$ state of SiH$_2$,
\begin{equation}
\includegraphics[scale=0.75]{fig6-03b}
\label{chap6-eqno12}
\end{equation}
which is symbolic for the wavefunction
\begin{equation}
{\cal A} \left[ \left( \phi_{\ell} \phi_{\bar{\ell}} +
\phi_{\bar{\ell}} \phi_{\ell} \right) \left( \phi_{p_z}
\phi_\mathrm{H} + \phi_\mathrm{H} \phi_{p_z} \right) \left( \phi_{p_y}
\phi_{\mathrm{H}^{\prime}} + \phi_{\mathrm{H}^{\prime}} \phi_{p_y}
\right) \alpha \beta \alpha \beta \alpha \beta \right] ,
\end{equation}
where
\begin{equation}
% missing doubly-occupied lobe orbital here, p 6.1-10
\end{equation}
represents the two overlapping lobe orbitals, one pointing above the
plane of the page and the other below. Since the Si $p$ orbitals are
at 90$^{\circ}$ with respect to each other, one would expect the bond
angle of this state to be about 90$^{\circ}$. Because of the Pauli
principle-induced pair-pair repulsions between the two SiH bonds, the
actual bond angle is slightly larger, 92.1.$^{9,10}$ Similarly, due to
the interaction between the lobe pair and the two SiH bond pairs, the
lobe orbitals will be in the plane bisecting the H-Si-H angle, and the
angle between the two lobes will be less than the 104$^{\circ}$ of
${^2\Pi}$ SiH, $104 = 360 - 2 \times 128^{\circ}$. The actual optimum
angle is 90$^{\circ}$,$^{10}$ as indicated in (\ref{chap6-eqno12}).
The optimum orbitals are shown in Figure \ref{chap6-fig5}.
\begin{equation}
\includegraphics[scale=0.75]{fig6-03c}
\label{chap6-eqno12-a}
\end{equation}
Bonding the H to a lobe orbital of (\ref{chap6-eqno11}), leads to
\begin{equation}
\includegraphics[scale=0.75]{fig6-03d}
\label{chap6-eqno13}
\end{equation}
In the optimum wavefunction, the orbitals comprising the two bond
pairs will be equivalent, each having the character of roughly the
average of a lobe bond and a $p$ bond, as depicted
\begin{equation}
\includegraphics[scale=0.75]{fig6-04a}
\label{chap6-eqno14}
\end{equation}
From (\ref{chap6-eqno11}), the HSiH bond angle in (\ref{chap6-eqno13})
would be expected to be 128$^{\circ}$. However, there are several
important interactions to be considered. As the second H approaches
the lobe orbital $\ell$, the $\phi_\mathrm{H}$ orbital will overlap not only
$\ell$ but also $\bar{\ell}$, and the other SiH bond pair. Because
the wavefunction must satisfy the Pauli principle, these overlaps give
rise to repulsive interactions. Of the two, the H$-{\bar{\ell}}$
interaction will be more important, the $\bar{\ell}-\ell$ angles is
104$^{\circ}$, while $\ell$ is 120$^{\circ}$ from the first bond.
Thus, these repulsions will reduce the bond angle for the expected
128$^{\circ}$. In fact, the actual bond angle is
117$^{\circ}$,$^{9,10}$ putting the lobe orbital $\bar{\ell}$ at
121-1/2$^{\circ}$ away from each bond. The optimum orbitals are shown
in Figure \ref{chap6-fig5}.
\begin{figure}
\includegraphics[scale=0.75]{fig6-04}
\caption{SiH bonding (top) and nonbonding (bottom) pairs.}
\label{chap6-fig4}
\end{figure}
\begin{figure}
\includegraphics[scale=0.75]{fig6-05}
\caption{SiH$_2$ bonding (top) and nonbonding (bottom) pairs.}
\label{chap6-fig5}
\end{figure}
For SiH we found that bonding the hydrogen to a $p$ orbital of Si,
leads to a stronger bond than bonding to a lobe orbital, due to the
energy required to uncouple the atomic lobe pair. Similarly, for
SiH$_2$, the strongest bond is obtained by bonding the H to the
unpaired $p$ orbital of SiH leading to the ${^1A}_1$ ground state for
SiH$_2$. The ${^3B}_1$ state, (\ref{chap6-eqno14}), is 17.2 kcal
higher.$^{10}$
\subsection{Low-lying States of SiH$_3$ and SiH$_4$}
Starting with the ground state ${^1A}_1$ of SiH$_2$,
(\ref{chap6-eqno12}), we see that bonding a third H to SiH$_2$ should
lead to a pyramidal molecule as
\begin{equation}
\includegraphics[scale=0.75]{fig6-04b}
\label{chap6-eqno15}
\end{equation}
Allowing all of the orbitals to readjust leads to three equivalent
bond pairs, each having the character expected for the average of two
$p$ bonds and one lobe bond. Averaging the bond angles ($92^\circ$,
$119.4^\circ$, and $119.4^\circ$) leads to a predicted bond angle of
$110.3^\circ$ for SiH$_3$. The actual bond angle in SiH$_3$ is
$110.6^\circ$. The optimum orbitals are shown in Figure
\ref{chap6-fig5-2}.
\begin{figure}
\includegraphics[scale=0.75]{fig6-06}
\caption{GVB orbitals for SiH$_3$}
\label{chap6-fig5-2}
\end{figure}
It is important to note that the ground states of SiH and SiH$_2$
resulted from bonding to $p$ orbitals and did not involve unpairing
the two lobe orbitals of Si. In order to bond an H to SiH$_2$,
however, it is necessary to unpair the lobe orbitals, and therefore we
expect the H$_2$Si-H bond energy to be significantly weaker than the
HSi-H energy.
Consider now how the character of the SiH$_3$ wavefunction changes as
the molecule is diestored to a planar geometry. The nonbonding lobe
orbital must remain orthogonal to the bond pairs and thus this orbital
becomes a $p\pi$ orbital at the planar geometry,
\begin{equation}
\includegraphics[scale=0.75]{fig6-05a}
\label{chap6-eqno15-2}
\end{equation}
Alternatively, the planar state can be considered to arise from
bonding two hydrogens to the lobe orbitals of the $^2\Pi$ state of
SiH,
\begin{equation}
\includegraphics[scale=0.75]{fig6-05b}
\rightarrow
\includegraphics[scale=0.75]{fig6-05c}
\label{chap6-eqno15-3}
\end{equation}
The bond pairs, of course, readjust to become equivalent, and thus,
each are roughly the average of two lobe bonds and one $p$ bond. As
discussed previously, the pyramidal molecule involves two $p$ bonds
and one lobe bond. Thus, the barrier to inversion, approximately 21
kcal in SiH$_3$, is directly related to the difference between $p$
bonds and lobe bonds.
Starting with (\ref{chap6-eqno15}) and bonding an H to the unpaired
lobe orbital, leads to tetrahedral SiH$_4$. Again, all the bond pairs
readjust to minimize bond-bond repulsions and to maximize bonding
interactions, resulting in four equivalent bond pairs. The optimum
orbitals are shown in Figure \ref{chap6-fig6}.
\begin{figure}
\includegraphics[scale=0.75]{fig6-06a}
\includegraphics[scale=0.75]{fig6-06b}
\caption{GVB orbitals for SiH$_4$.}
\label{chap6-fig6}
\end{figure}
\subsection{Summary}
In the preceding discussion, we constructed the lowest states of
SiH$_n$ by bonding a hydrogen atom to the ground state of
SiH$_{n-1}$. In this model we, first, assumed that the orbitals of
SiH$_{n-1}$ remain unperturbed by the additional hydrogen. Second,
after deciding on the optimal orbital pairing and geometry, we allowed
for slight readjustments of the various orbitals.
A key feature in this qualitative description of SiH$_n$, is the use of
optimized GVB orbitals, allowing a consistent,
progressive description of each state. In the GVB
description, the correlated orbitals are hydridized even in the atom,
and these orbitals are found to change quite continuously, as a
function of the number of bonds. With this simple model, we were able
to understand that:
\begin{enumerate}
\item the ground state of SiH should be a
${^2\Pi}$ state and there should be a low-lying ${^4\Sigma}^-$
excited state,
\item SiH$_2$ should also have two low-lying states,
a ${^1A}_1$ ground state of bond angle of approximately
117$^{\circ}$,
\item SiH$_3$ should be pyramidal with a large
barrier, 21 kcal, for inversion.
\item the smallest bond energy
in the series $D_{H-SiH_{n-1}}$ should be $D_{H-SiH_2}$, since only in
making this bond is it necessary to unpair the Si lobe orbitals.
\end{enumerate}
\section{Second-Row Atoms}
From the previous section, it is clear that the character of the
atomic ground state wavefunctions, plays a dominant role in molecular
bonding. In this section, we will briefly discuss the ground states
of the other second-row atoms, Na-Ar, as a prelude to a consideraton
of the hydrides of these atoms.
Again, ignoring the core electrons, the ground state atoms have the
following HF configurations.
\begin{equation}
\begin{array}{lll}
\mathrm{Na} & (3s)^1 &
{\cal A} \left[ \left( \phi_s \right) \alpha \right] =
{\cal A} \left[ \phi_{3s} \alpha \right] \\
\mathrm{Mg} & (3s)^2 &
{\cal A} \left[ \left( \phi_s \right)^2 \alpha \beta
\right] = {\cal A} \left[ \left( \phi_{3s} \alpha \right)
\left( \phi_{3s} \beta \right) \right] \\
\mathrm{Al} & (3s)^2 (3p)^1 &
{\cal A} \left[ ( \phi_s )^2 \left( \phi_{p_z}
\right) \alpha \beta \alpha \right] \\
\mathrm{Si} & (3s)^2 (3p)^2 &
{\cal A} \left[ \left( \phi_s \right)^2 \left(
\phi_{p_z} \right) \left( \phi_{p_y} \right) \alpha \beta \alpha
\alpha \right] \\
\mathrm{P} &(3s)^2 (3p)^3 &
{\cal A} \left[ \left( \phi_s \right)^2 \left(
\phi_{p_z} \right) \left( \phi_{p_y} \right) \left( \phi_{p_x}
\right) \alpha \beta \alpha \alpha \alpha \right]\\
\mathrm{S} & (3s)^2 (3p)^4 &
{\cal A} \left[ \left( \phi_s \right)^2 \left(
\phi_{p_z} \right)^2 \left( \phi_{p_y} \right) \left( \phi_{p_x}
\right) \alpha \beta \alpha \beta \alpha \alpha \right] \\
\mathrm{Cl} & (3s)^2 (3p)^5 &
{\cal A} \left[ \left( \phi_s \right)^2 \left(
\phi_{p_z} \right)^2 \left( \phi_{p_y} \right)^2 \left( \phi_{p_x}
\right) \alpha \beta \alpha \beta \alpha \beta \alpha \right] \\
\mathrm{Ar} & (3s)^2 (3p)^6 &
{\cal A} \left[ \left( \phi_s \right)^2 \left(
\phi_{p_z} \right)^2 \left( \phi_{p_y} \right)^2 \left( \phi_{p_x}
\right) \alpha \beta \alpha \beta \alpha \beta \alpha \beta \alpha
\right] \\
\end{array}
\end{equation}
Correlating the $3s$ pair of P, in the same way as for Si, (4), leads
to the wavefunction
\begin{eqnarray}
{\cal A} \left[ \left( \phi_{\ell} \phi_{\bar{\ell}} +
\phi_{\bar{\ell}} \phi_{\ell} \right) \phi_{p_z} \phi_{p_y}
\phi_{p_x} \alpha \beta \alpha \alpha \alpha \right] &=& {\cal A}|
\left[ \left( \phi^2_s - \lambda^2 \phi^2_{p_x} \right) \phi_{p_z}
\phi_{p_y} \phi_{p_x} \alpha \beta \alpha \alpha \alpha \right]\cr
&=& {\cal A} \left[ \phi^2_s \phi_{p_z}
\phi_{p_y} \phi_{p_x} \alpha \beta \alpha \alpha \alpha \right]\cr
&& - \lambda^2 {\cal A} \left[ \phi^2_{p_x} \phi_{p_z}
\phi_{p_y} \phi_{p_x} \alpha \beta \alpha \alpha \alpha
\right]
\label{chap6-eqno16}
\end{eqnarray}
However, a second term of
\begin{equation}
{\cal A} \left[ \phi^2_{p_x} \phi_{p_z}
\phi_{p_y} \phi_{p_x} \alpha \beta \alpha \alpha \alpha \right] ,
\end{equation}
has three electrons in the $\phi_{p_x}$ orbitals, and hence, in order
to satisfy the Pauli principle, this term must be zero. (The second
term of (\ref{chap6-eqno16}) will be exactly zero only if the
correlating $\phi_{p_x}$ is identical to the singly-occupied
$\phi_{p_x}$. In fact, these two orbitals will not be exactly equal,
and hence, there will be a small correlation effect.) This will not,
however, change the qualitative description of bonding discussed here.
That is, since all three $3p$ orbitals are singly-occupied, the
GVB correlation of the $3s$ pair is eliminated,
and the GVB wavefunction of ground state P is
identical to the HF wavefunction. Similarly for S, Cl, and
Ar, the ground state GVB and HF
wavefunctions are identical.
It should be noted here that we are considering only the dominant
angular correlation involving $3p$ orbitals. There are other less
important correlations of the $3s$ pair, for example, radical
correlation. However, in Si the angular correlation leads to two lobe
orbitals on opposite sides of the atom, allowing effective bonding to
an H. For P, S, Cl, and Ar, the radial correlation effects lead to
no such separation, and hence, these correlation effects do not modify
the qualitative description of the bonding.
In both Mg and Al, the GVB wavefunction leads to
lobe orbitals just as for Si. In Mg, since none of the $3p$ orbitals
are occupied, the lobe pair can point in the $x$, $y$, or $z$
directions, leading to a GVB wavefunction of the
form
\begin{equation}
{\cal A} \left[ \left( \phi^2_s - \lambda^2 \phi^2_{p_x} - \lambda^2
\phi^2_{p_y} - \lambda^2 \phi_{p_z} \right) \alpha \beta \right].
\label{chap6-eqno17}
\end{equation}
For Al, the $3p_z$ orbital is singly-occupied, and hence, the lobe
orbitals can point in only the $x$ or $y$ directions. The resulting
GVB wavefunction for ground state Al is
\begin{equation}
{\cal A} \left[ \left( \phi^2_s - \lambda^2 \phi^2_{p_x} - \lambda^2
\phi^2_{p_y} \right) \phi_{p_z} \alpha \beta \alpha \right] .
\label{chap6-eqno18}
\end{equation}
For Na, with only one valence electron, there are no corresponding
correlation effects.
\begin{figure}
\includegraphics[scale=0.75]{fig6-06c}
\caption{}
\label{chap6-fig6-2}
\end{figure}
Schematically then, the simple GVB wavefunctions
of the second-row atoms are as shown in Figure \ref{chap6-fig6-2}. As
before, a circle represents a $p$ orbital out of the plane for all
atoms except Na. Note also that the $3s$ pair has been omitted for P,
S, Cl, and Ar. For Mg and Al, the lobe pairs are actually correlated
in more than one direction, see (\ref{chap6-eqno17}) and
(\ref{chap6-eqno18}). However, for simplicity in the diagrams, we
indicate only one of the possible correlations. It is understood, in
these cases, that the actual GVB wavefunction is
a superposition of two or three such configurations incorporating $3s$
correlation into all unoccupied $p$ directions.
\section{Second-Row Hydrides}
\subsection{MgH$_n$}
Starting with the ground state of Mg and bonding an H to one of the
lobe orbitals, leads to the ground state $({^2\Sigma}^+)$ of MgH,
\begin{equation}
\includegraphics{fig6-06d}
\label{chap6-eqno20}
\end{equation}
Since this bonding scheme is the only one attainable with ground
state Mg, there will be no other bound states of MgH dissociating to
ground state atoms.
Similarly, the ground state of MgH$_2$ can be constructed by bonding
an H to the unpaired lobe orbital of MgH. The results is a linear
$({^1\Sigma}^+)$ ground states of
\begin{equation}
%\includegraphics{fig6-06e}
\label{chap6-eqno21}
\end{equation}
Note that in making the first bond to Mg, it was necessary to unpair
the Mg lobe orbitals. Since the lobe orbitals overlap, unpairing them
results in a significant increase in the total energy, 62 kcal, for
the free atom. The second MgH bond, however, is to an already
unpaired lobe, and hence, the second bond should be much stronger
than the first, i.e.
\begin{equation}
D_\mathrm{HMg-H} \ll D_\mathrm{Mg-H} .
\end{equation}
Consider MgH$_2$, (\ref{chap6-eqno21}), there are no more occupied
orbitals available for bonding, and therefore, MgH$_3$ will not be
bound. van der Waals interactions can lead to a weak bond, $\leq$ 2
kcal, but we ignore such second-order effects here.
\subsection{Low-Lying States of AlH$_n$}
Starting with the ground state of Al, (\ref{chap6-eqno20}), an H can
bond either to the singly-occupied $p$ orbital, leading to the
$({^1\Sigma}^+)$ state
\begin{equation}
\includegraphics{fig6-06f}
\label{chap6-eqno22}
\end{equation}
or to one of the lobe orbitals, leading to the ${^3\Pi}$ state,
\begin{equation}
\includegraphics{fig6-06g}
\label{chap6-eqno22-2}
\end{equation}
As with Si, the bond to the unpaired $p$ orbital will be stronger than
the bond to a lobe orbital, and hence, the ground state of AlH is the
$({^1\Sigma}^+)$ state. As with Si, interactions between the bond
pair and the lobe pair in (\ref{chap6-eqno22}) result in the lobe
orbitals bending back to an angle of approximately 128$^{\circ}$ with
respect to the bond axis.
Consider the ground state of AlH, the only orbitals available for
bonding are the lobes. Bonding a hydrogen to one of the lobe orbitals
of (\ref{chap6-eqno22}), leads to
\begin{equation}
\includegraphics{fig6-06h}
\label{chap6-eqno23}
\end{equation}
and allowing the bond to readjust, see (\ref{chap6-eqno13}) and
(\ref{chap6-eqno14}) for SiH$_2$, leads to the ${^2A}_1$ state of
AlH$_2$,
\begin{equation}
\includegraphics{fig6-06i}
\end{equation}
As in SiH$_2$, Pauli principle repulsions between the two bond pairs
and the singly-occupied lobe orbital, will decrease the AlH$_2$ angle
from 128$^{\circ}$, to approximatley 117$^{\circ}$, the lobe-bond
angle of AlH, (\ref{chap6-eqno22}).
The ${^2A}_1$ state of AlH$_2$ has one singly-occupied, unpaired lobe
orbital. Bonding a third hydrogen to this orbital, leads to the
planar ground state of AlH$_3$
\begin{equation}
\includegraphics{fig6-06j}
\label{chap6-eqno24}
\end{equation}
As there are no additional valence orbitals available for bonding, a
fourth H will not be bound to (\ref{chap6-eqno24}). Again, van der Waals
interactions can lead to a weak bond, $\leq$ 2 kcal, but we ignore
such second-order effects here.
Considering, briefly, the relative bond energies of the series
$D_{Al-H}$, $D_{HAl-H}$, and $D_{H_2Al-H}$, the first and third bonds
involve unpaired Al orbitals, a $p$ orbital in the first and a lobe in
the third. In order to make the second bond, however, it was
necessary to unpair the Al lobe orbitals, (\ref{chap6-eqno23}). Thus,
the second bond energy will be at least 20 kcal smaller than either
the first or the third.
\subsection{Low-Lying States of PH$_n$}
Starting with the ground state of P, and bonding an H to any one of
the three-singly-occupied $p$ orbitals, leads to the ${^3\Sigma}^-$
state of PH
\begin{equation}
\includegraphics{fig6-06k}
\label{chap6-eqno25}
\end{equation}
Note that there is a doubly-occupied $3s$ pair, not shown in
(\ref{chap6-eqno25}).
Bonding an H to a second $p$ orbital, leads to the ${^2B}_1$ state of
PH$_2$,
\begin{equation}
\includegraphics{fig6-06l}
\label{chap6-eqno26}
\end{equation}
Because the two bonds involve perpendicular $p$ orbitals, we would
expect a bond angle of approximately 90$^{\circ}$. In fact, the bond
angle is slightly larger, 92$^{\circ}$, due to bond-bond repulsions,
Pauli principle. Bonding an H to the remaining singly-occupied $p$
orbital of PH$_2$, leads to the pyramidal ground state of PH$_3$.
Again, the equilibrium bond angles are expected to be slightly larger
than 90$^{\circ}$, the observed angles are 92.2$^{\circ}$.
All three bonds involve singly-occupied phosphorous $p$ orbitals, and
hence, the three bond strengths should be comparable. There will
though, be a small, systematic change in the bond energies due to
differences in the $p-p^{\prime}$ exchange interactions as discussed
in a later section. The result is that the bond strengths are in the
order
\begin{equation}
D_\mathrm{P-H} < D_\mathrm{HP - H} < D_\mathrm{H_2P-H}.
\end{equation}
Bonding a fourth H to phosphorous requires the unpairing of the $3s$
pair. The energy of this unpairing is larger than the bond energy,
and hence, PH$_4$ should not be bound with respect to PH$_3$ plus H.
\subsection{Low-Lying States of SH$_n$}
Starting with the ground states of sulfur, and bonding an H to one of
the two singly-occupied $p$ orbitals, leads to the ${^2\Pi}$ ground
state of SH,
\begin{equation}
\includegraphics{fig6-06m}
\end{equation}
Bonding a second H, gives rise to the ${^1A}_1$ state of SH$_2$
\begin{equation}
\includegraphics{fig6-06n}
\end{equation}
Because both bonds are two $p$ orbitals, the bond angle should be
90$^{\circ}$. However, bond-bond repulsions lead to the slightly
larger angle of 92$^{\circ}$.
In order to bond a third H to sulfur, it is necessary to unpair the
$3s$ electron pair. Because the three $p$ orbitals of $s$ are
occupied, the $3s$ pair of $s$ is not highly correlated, as it is in
Mg, Al, and Si. Thus, the energy required to uncouple the pair is
larger than the resulting bond energy. Hence, SH$_3$ should not be
bound with respect to SH$_2$ plus H.
\subsection{The State of ClH$_n$ and ArH$_n$}
The ground state of Cl, includes one singly-occupied $p$ orbital.
Bonding an H to this orbital, yields the ${^1\Sigma}^+$ ground state
of HCl,
\begin{equation}
\includegraphics{fig6-06o}
\end{equation}
As there are no additional orbitals available for bonding, ClH$_2$ is
not expected to be bound, nor are any low-lying bound excited states
of ClH expected. Starting with the configuraiton of Ar, we see that
there is no favorable pairing with an H atom.
\section{First-Row Hydrides}
The principles of bonding, discussed in the previous sections, apply
also to the hydrides of corresponding atoms of other rows of the
periodic table. For hydrides of non-transition metals atoms, below
the second row, the qualitative description of bonding is identical to
that of the second-row hydrides. The presence of partially filled $d$
or $f$ shells can lead to more complicated effects. For the first row
hydrides, however, some of the qualitative aspects of bonding are
different. In this section, we will first discuss the origin of the
differences, and then discuss the implications of these differences,
taking the CH$_n$ and NH$_n$ series as examples.
\subsection{Bond-Bond Repulsions}
\begin{figure}
\includegraphics{fig6-06e}
\caption{Bond angles of H$_2$O and H$_2$S as a function
of bond distance. The calculation is valence bond zeta basis plus
diffuse functions plus optimized $d$ functions.$^{11}$ }
\label{chap6-fig7}
\end{figure}
In the simplest description, bonding two H atoms to two
singly-occupied $p$ orbitals would lead to a bond angle of
90$^{\circ}$. For second-row atoms, Pauli principle repulsions
between the bond pairs increase these angles slightly to
91$^{\circ}$-93$^{\circ}$. Assuming covalent bonds, this repulsive
interaction depends upon the overlap, squared, of the two H orbitals,
For SiH$_2$(${^1A}_1$), PH$_2$(${^2B}_1$), and SH$_2$(${^1A}_1$) the
H-H distances for two bonds at 90$^{\circ}$ are 2.148, 2.010, and
1.818 \AA. However, for the corresponding first-row hydrides, CH$_2$,
NH$_2$, and OH$_2$, the bond lengths are approximately 30 percent
shorter, leading to H-H distances, for 90$^{\circ}$ bond angle, of
1.5712, 1.448, and 1.352 \AA. This difference in H-H distances, leads
to an increase in the H-H overlap, for example, from 0.2532 for SH$_2$
to 0.445 for OH$_2$. As a result, the optimum bond angles for the
first-row compounds are significantly larger, 102$^{\circ}$ for
CH$_2$(${^1A}_1$), NH$_+2$(${^2B}_1$), and 104$^{\circ}$ for
OH$_2$(${^1A}_1$), than those of their second-row counterparts. Note
that for all three molecules, the simplest description of the bonding
involves two perpendicular $p$ orbitals, and hence, predicted bond
angles of 90$^{\circ}$, see Figure \ref{chap6-fig7}.
Recall for SiH(${^2\Pi}$), (\ref{chap6-eqno11}), the angle between the lobe orbitals
and the bond is 128$^{\circ}$, corresponding to an angle between the
two lobes of 104$^{\circ}$. Thus, bonding an H to a lobe of
SiH(${^2\Pi}$) and averaging the two bond pairs, would be expected to
lead to an angle of 116$^{\circ}$ between the remaining lobe and each
of the bonds. In fact, the actual angle is somewhat larger,
121$^{\circ}$, indicating that the dominant repulsive overlap is
between the bond pairs and the lobe orbital, rather than between the
two bond pairs. Had the bond pair-bond pair repulsion been dominant,
the readjustment would have been to increase the bond angle, thus
decreasing the bond-lobe angles.
For CH(${^2\Pi}$), the bond-lobe angle is also
128$^{\circ}$,$^{12,13}$ and thus, bonding an H to a lobe orbital of
CH(${^2\Pi}$) would also be expected to lead to a bond-lobe angle
of 116$^{\circ}$. In this case, however, the actual angle is somewhat
smaller, 113.5$^{\circ}$, indicating that for the frist-row compound
the bond-bond repulsions are dominant. Thus, the bond angle of
CH$_2$(${^3B}_1$) is 113$^{\circ}$, 360-227, slightly larger than
expected on the basis of the CH(${^2\Pi}$) bond-lobe angles.
Similarly, the BH(${^1\Sigma}^+$), the bond-lobe angles are
126$^{\circ}$,$^{14}$ while bonding a H to one of the lobes, leads to
a bond angle of 131$^{\circ}$. Thus, for CH$_2$ and BH$_2$, the bond
angles are approximately 5$^{\circ}$ larger than the corresponding CH
and BH bond-lobe angles.
In summary, for first-row hydrides, bond-bond repulsions lead to a
12$^{\circ}$ to 15$^{\circ}$ increase in the bond angle between the
$p$-like bonds, and to a 5$^{\circ}$ increase for the case involving
one $p$-like and one lobe-like bond. This effect is much larger for
first row hydrides than for hydrides of any of the lower rows, simple
because of the smaller bond lengths in the first-row hydrides. A
detailed comparison of bond lengths and bond angles, for first-row,
second-row, and third-row hydrides is given in Table \ref{chap6-table1}.
\begin{table}
\caption{Summary of bond lengths and angles of the hydrides of the
first, second, and third rows of the periodic table.}
\label{chap6-table1}
\begin{tabular}{cccccc}\\ \hline
GVB Diagram & State & Molecule &\multicolumn{2}{c} Bond Angle
($\theta$) & Bond\cr
& & & Orbs. & Est. & Length (\AA)\cr
& ${^2\Sigma}^+$ & BeH & - & 180$^{\circ}$ & 1.343\cr
& & MgH & - & 180$^{\circ}$ & 1.730\cr
& ${^1\Sigma}^+$ & BeH$_2$ & - & 180$^{\circ}$\cr
& & MgH$_2$ & - & 180$^{\circ}$\cr
& & CaH$_2$ & - & 180$^{\circ}$\cr
& ${^1\Sigma}^+$ & BH & & 126$^{\circ}$ & 1.232\cr
& & AlH & & 128$^{\circ}$ & 1.648\cr
& & GaH & & (128$^{\circ}$) & 1.663\cr
& ${^2A}_1$ & BH$_2$ & 131$^{\circ}$ & 126$^{\circ}$ & 1.181\cr
& & AlH$_3$ & 119$^{\circ}$ & 128$^{\circ}$ & 1.59\cr
& & GaH$_2$ & & 128$^{\circ}$\cr
& ${^1A}^{\prime}$ & BH$_3$ & 120$^{\circ}$ &120$^{\circ}$\cr
& & AlH$_3$ & 120$^{\circ}$ &120$^{\circ}$\cr
& & GaH$_3$ & 120$^{\circ}$ &120$^{\circ}$\cr
& ${^2\Pi}$ & CH & - & 128$^{\circ}$ & 1.120\cr
& & SiH & - & 128$^{\circ}$ & 1.516\cr
& & GeH & - & (128$^{\circ}$) & 1.588\cr
& ${^1A}_1$ & CH$_2$ & 102.4 & 90$^{\circ}$ & 1.113\cr
& & SiH$_2$ & 92.1 & 90$^{\circ}$ & 1.516\cr
& & GeH$_2$ & (91$^{\circ}$) & 90$^{\circ}$\cr
& ${^3B}_1$ & CH$_2$ & 133.2$^{\circ}$ & 128$^{\circ}$ & 1.084\cr
& & SiH$_2$ & 117.8$^{\circ}$ & 128$^{\circ}$ & 1.485\cr
& & GeH$_2$ & & (128$^{\circ}$)\cr
& ${^2A}^{\prime}$ & CH$_3$ & 120$^{\circ}$ & 120$^{\circ}$\cr
& ${^2A}$ & ~~ GeH$_3$ ~~\cr
& & CH$_4$\cr
& & SiH$_4$ & & & 1.479\cr
& & GeH$_4$\cr
& ${^3\Sigma}^-$ & NH & - & & 1.035\cr
& & PH & - & & (1.433)\cr
& & AsH & - & & 1.534\cr
& ${^3B}_1$ & NH$_2$ & 103.3$^{\circ}$ & 90$^{\circ}$ & 1.024\cr
& & PH$_2$ & 91.7$^{\circ}$ & ~~ 90$^{\circ}$ ~~ & ~~ 1.418\cr
& & AsH$_2$ & 90.7$^{\circ}$ & & 1.518\cr
& ${^2A}_1$ & NH$_2$ & 143.3$^{\circ}$ & & 1.000\cr
& & PH$_2$ & 123.1$^{\circ}$ & & 1.403\cr
& & AsH$_2$\cr
& ${^1A}$ & NH$_3$ & 106.7$^{\circ}$ & 90$^{\circ}$ & 1.012\cr
& & PH$_3$ & 93.3$^{\circ}$ & 90$^{\circ}$ & 1.420\cr
& & AsH$_3$ & 92.1$^{\circ}$ & 90$^{\circ}$ & 1.511\cr
& ${^2\Pi}$ & OH & - & & 0.970\cr
& & SH & - & & 1.341\cr
& & SeH & - & & (1.475)\cr
& ${^1A}_1$ & OH$_2$ & 104.5$^{\circ}$ & 90$^{\circ}$ & 0.958\cr
& & SH$_2$ & 92.1$^{\circ}$ & 90$^{\circ}$ & 1.336\cr
& & SeH$_2$ & 90.6$^{\circ}$ & 90$^{\circ}$ & 1.460\cr
& & TeH$_2$ & 90.2$^{\circ}$ & & 1.658\cr
& ${^1\Sigma}^+_g$ & FH & - & - & 0.917\cr
& & ClH & - & - & 1.275\cr
& & BrH & - & - & 1.414\cr
& & IH & & & 1.609\cr
\hline
\end{tabular}
\end{table}
\subsection{Relative Strengths of Bonds}
A second factor, distinguishing the first-row atoms from the others,
is that the sizes of the $s$ and $p$ orbitals are comparable for the
first row. Whereas for lower rows, the $s$ orbitals are significantly
smaller than the $p$ orbitals. The comparison of sizes is shown in
Chapter 5, where the valence $s$ and $p$ orbitals are compared for