Solutions to Problems
in
Fundamentals of
Structural Mechanics
An instructor’s manual to accompany the book
Fundamentals of Structural Mechanics
Keith D. Hjelmstad
Solutions to Problems
in
Fundamentals of
Structural Mechanics
An instructor’s manual to accompany the book
Fundamentals of Structural Mechanics
by Keith D. Hjelmstad
Keith D. Hjelmstad
University of Illinois at Urbana-Champaign
With assistance from
Ghadir Haikal, Dan Turner, and
Structural Mechanics
An instructor’s manual to accompany the book Fundamentals of Structural Mechanics by Keith D. Hjelmstad
by
Keith D. Hjelmstad
University of Illinois at Urbana-Champaign
With assistance from
Ghadir Haikal, Dan Turner, and Cara (Liverant) Phillips
E
2007 by Keith D. Hjelmstad
All rights reserved. No part of this document may be translated or reproduced in any form
without the written permission of the author.
Contents
Preface
vii
1
Vectors and Tensors
. . . .
1
2
The Geometry of Deformation
. . . .
39
3
The Transmission of Force
. . . .
77
4
Linear Elastic Constitutive Theory
. . . .
95
5
Boundary Value Problems in Elasticity
. . . .
129
6
The Ritz Method of Approximation
. . . .
141
7
The Linear Theory of Beams
. . . .
173
8
The Linear Theory of Plates
. . . .
239
9
Energy Principles and Static Stability
. . . .
263
10 Fundamental Concepts in Static Stability
. . . .
285
11 The Planar Buckling of Beams
. . . .
309
12 Numerical Computation for Nonlinear Problems
. . . .
359
Preface
A significant part of the book Fundamentals of Structural Mechanics lives in the problems at the back of each chapter. No student can hope to master the material covered in the book without solving at least some of these problems. An instructor who uses the book as a text for a course on structural mechanics may want to use these problems as a source of exam-ples to illuminate points in the text or as a source of homework problems for the student to work out. This manual should relieve some of the burden of preparation of course mate-rials.
This manual provides detailed solutions to almost all of the 302 problems in
Funda-mentals of Structural Mechanics 2e. The style in which the solutions are presented is
simi-lar to the examples presented in the book, with narrative to help get from one step to the next as well as some discussion of the results. The notation agrees with that used in the book.
In solving the problems it became quite apparent that a program like MATHEMATICAT
is indispensable in carrying out some of the more tedious computations. For those prob-lems that we used MATHEMATICATwe have provided a listing of the script. Most of these
are fairly short, but might be useful to someone who is not very familiar with MATHEMATI -CAT.
The problems in Chapter 12, in almost every case, involve modifying the programs presented in the book. When I revised the book for the second edition I converted all fo the programs from FORTRAN to MATLAB. However, I have not found time to change the problem solutions. Therefore, those are still in FORTRAN. I have included the FOR-TRAN versions from the first edition of the book at the back so that you can follow the solutions presented. You can get the FORTRAN source, for the programs in the text as well as the programs in the solutions manual, from me. Make your request by e-mail to: [email protected]. I will send you the files.
We have tried very hard to get the answers right and to get them into this book with the highest possible fidelity. Alas, I am sure some errors remain. Please forgive those er-rors. I would appreciate learning of the errors that you discover so that I can eliminate them in future editions.
Putting this manual together was hard work, the burden of which I gladly shared with Ghadir Haikal, Cara (Liverant) Phillips, and Dan Turner. Ghadir managed to locate and organize the solutions to quiz problems that I had collected over the years. She then com-pleted Chapters 1 through 5 while I did 6 through 12. The problems from the first edition were available to us as were the problems that Cara had typset from old hand-written ex-amination solutions a few years ago. Dan proofread a large portion of the document. I would also like to (re)acknowledge the contributors to the solutions manual for the first edition: Ertugrul Taciroglu, Jiwon Kim, Eric Williamson, and Quihai (Ken) Zuo. The problems they worked out are still correct! I am pleased to acknowledge the contributions of Ghadir, Dan, Cara, Ertugrul, Jiwon, Eric and Ken to the preparation of this manual.
Chapter 1
Vectors and Tensors
1. Compute the values of the following expressions
(a) δii
(b) δijδij
(c) Cijδikδjk
(d) δabδbcδcd... δxyδyz(enough terms to exhaust the whole alphabet)
(a) δii. Compute the value by summing on the repeated index i as
δii= δ11+δ22+δ33= 3.
(b) δijδij. The two indices are repeated. Contract first on index j, then on index i.
δijδij= δii= 3.
(c) Cijδikδjk. The three indices are repeated. Contract first on index i, then on index j,
and finally on index k.
Cijδikδjk= Ckjδjk= Ckk= C11+C22+C33.
(d) δabδbcδcd... δxyδyz(enough terms to exhaust the whole alphabet). All of the
indices are repeated except for a and z. Contract first on index b, then on index c, etc. until all indices have been summed
2. Let two vectors, u and v, have components relative to some basis as u = (5, −2, 1)
and v = (1, 1, 1). Compute the lengths of the vectors and the angle between them. Find the area of the parallelogram defined by u and v.
The length of a vector can be computed as
‖ u ‖= u ⋅ u = u
iui.Thus, the lengths of the vectors can be compute as
‖ u ‖ = 25+4+1 = 30 ‖ v ‖ = 1+1+1 = 3
The dot product of the vectors is
u ⋅ v = 5−2+1 = 4
cos θ(u, v) = u ⋅ v∕ ‖ u ‖‖ v ‖ = 4∕ 30 , θ = 1.136 rad3
The area of the parallelogram can be computed either of two ways:
A = ‖ (u × v) ‖ = ‖ (−3, −4, 7) ‖ = 9+16+49 = 8.6023
A = ‖ (u × v) ‖ = ‖ u ‖‖ v ‖ sin θ = 30 sin(1.136 rad) = 8.60233
3. The vertices of a triangle are given by the position vectors a, b, and c. The components
of these vectors in a particular basis are a = (0, 0, 0), b = (1, 4, 3), and c = (2, 3, 1). Using a vector approach, compute the area of the triangle. Find the area of the triangle projected onto the plane with normal n = (0, 0, 1). Find the unit normal vector to the triangle. (a) Using a vector approach, compute the area of the triangle. The area of the original triangle can be computed as
A1 = 12‖ (c × b) ‖ = 12‖ (5, −5, 5) ‖ = 1225+25+25 = 4.330
(b) Find the area of the triangle projected onto the plane with normal n = (0, 0, 1). The projected vectors can be found as follows
c′ = c − (c ⋅ n)n = (2, 3, 1) − 1(0, 0, 1) = (2, 3, 0) b′ = b − (b ⋅ n)n = (1, 4, 3) − 3(0, 0, 1) = (1, 4, 0)
The area of the projected triangle can be computed as
c a x1 x2 x3 b d x1 x2 x3 a b c b′ c′ n A1 A2
(c) Find the unit normal vector to the triangle.
n = ac × ab
‖ ac × ab ‖
where ab is the vector pointing from a to b. Noting that a is located at the origin of the coordinate system, we find
ab = b = (1, 4, 3) ac = c = (2, 3, 1) ac × ab = 2, 3, 1 × 1, 4, 3 = 5, −5, 5 ; ‖ ac × ab ‖= 5 3
⇒ n = 1 3
(1, − 1, 1)
4. Let the coordinates of four points a, b, c and d be given by
the following position vectors a=(1, 1, 1), b=(2, 1, 1), c=(1, 2, 2), and d=(1, 1, 3) in the coordinate system shown. Find vectors normal to planes abc and bcd. Find the angle between those vec-tors. Find the area of the triangle abc. Find the volume of the tet-rahedron abcd.
(a) Find vectors normal to planes abc and bcd.
nabc = ab × ac = b − a × c − a = (1, 0, 0) × (0, 1, 1) = (0, −1, 1)
nbcd = bc × bd = c − b × d − b = (−1, 1, 1) × (− 1, 0, 2) = (2, 1, 1)
(b) Find the angle between those vectors.
cos θ = nabc⋅ nbcd
‖ nabc‖‖ nbcd‖
(c) Find the area of the triangle abc.
Aabc = ‖ nabc‖ = 2
(d) Find the volume of the tetrahedron abcd.
Vabcd = 16ab × ac ⋅ ad = 16(0, −1, 1) ⋅ (0, 0, 2) =13
5. Demonstrate that (u × v) ⋅ w = uivjwkεijkfrom basic operations on the base vectors.
Equality can be demonstrated by simply substituting the component forms of the vectors into the triple scalar product, collecting the scalars to the front and recognizing the definition of the components of the permutation tensor. To wit,
(u × v) ⋅ w = (uiei× vjej) ⋅ wkek = uivjwk
(ei× ej) ⋅ ek
= uivjwkÁijk6. Show that the triple scalar product is skew-symmetric with respect to changing the
or-der in which the vectors appear in the product. For example, show that (u × v) ⋅ w = − (v × u) ⋅ w
To generalize this notion, any cyclic permutation (e.g., u, v, w → w, u, v) of the order of the vectors leaves the algebraic sign of the product unchanged, while any acyclic permuta-tion (e.g., u, v, w → v, u, w) of the order of the vectors changes the sign. How does this observation relate to swapping rows of a matrix in the computation of the determinant of that matrix?
For the case given the demonstration is straightforward as, by definition of the cross product, the vector u × v = −(v × u), i.e., a vector of the same magnitude, pointing in the opposite direction. The negative sign persists in the triple product. To see the more general case, consider the component form of the triple scalar product
(u × v) ⋅ w = Áijkuivjwk
To swap an entry, for example v and w we would have
(u × w) ⋅ v = Áijkuiwjvk = Áikjuivjwk
Clearly, then, swapping entries in the triple scalar product is the same as swapping indices on the permutation tensor. A cyclic permutation of indices leaves the sign of
the product unchanged while an acyclic permutation changes the sign. Two successive acyclic permutations change the sign and then change it back and hence must be equiv-alent to a single cyclic permutation. The determinant of a matrix and the triple scalar product are equivalent because
u × v) ⋅ w = det
u v w
where the components of u, v, and w comprise the rows of the matrix. The effects of permutation of rows of the matrix on the determinant are clearly the same as swapping elements of the triple scalar product.
7. Use the observation that ‖ u−v ‖2= u−v ⋅ u−v along with the distributive law
for the dot product to show that
u ⋅ v ≡ 12
‖ u ‖2+ ‖ v ‖2− ‖ v−u ‖2
The solution depends upon the computation of the length of u−v
‖ u − v ‖2= u−v ⋅ u−v
= u ⋅ u − 2u ⋅ v + v ⋅ v = ‖ u ‖2− 2u ⋅ v + ‖ v ‖2
Rearrange to give desired result. Note that ‖ u−v ‖ = ‖ v−u ‖.
8. Prove the Schwarz inequality, |u ⋅ v| ≤ ‖ u ‖ ‖ v ‖. Try to prove this inequality
with-out using the formula u ⋅ v =‖ u ‖‖ v ‖ cos θ(u, v).
Consider any two vectors u ≠ 0 and v ≠ 0 (equality holds if either one of the vectors is zero). The length of any vector is greater than or equal to zero.
0 ≤ ‖ αu+β v ‖2= α u+βv ⋅ αu+βv
= α2‖ u ‖2+ 2α βu ⋅ v + β2‖ v ‖2
Let α =‖ v ‖2and β = −u ⋅ v. Making this specialization gives
0 ≤ ‖ αu+β v ‖2= ‖ v ‖2‖ v ‖2‖ u ‖2− 2 ‖ v ‖2u ⋅ v2+ u ⋅ v2‖ v ‖2
Since ‖ v ‖2≥ 0 we can conclude that
0 ≤ ‖ v ‖2‖ u ‖2− u ⋅ v 2 ⇒ ‖ v ‖2‖ u ‖2≥ u ⋅ v2
9. Show that [u v]T= v u using the definition of the transpose of a tensor and by
demonstrating that the two tensors give the same result when acting on arbitrary vectors
a and b.
A tensor A has transpose ATdefined by a ⋅ Ab = b ⋅ ATa for any vectors a and b.
Let A ≡ u v and proceed as follows:
a ⋅ u vb = a ⋅ b ⋅ vu
= a ⋅ ub ⋅ v = b ⋅ va ⋅ u = b ⋅ a ⋅ uv = b ⋅ v ua
By definition tensor product of vectors Dot product is a scalar
Scalars are commutative Dot product is a scalar
By definition tensor product of vectors
Therefore AT= v u and hence [u v]T = v u.
10. Show that the components of a tensor T and its transpose TTsatisfy [TT]
ij= [T]ji. a ⋅ Tb = a ⋅ Tjk
ej ek
b Component form of T = Tjka ⋅
ej ek
b = Tjk
a ⋅ ej
ek⋅ b = Tjkek⋅ b
a ⋅ ej
= Tjkb ⋅ ek
ej⋅ a
Gather scalars to front By definition of tensor product Scalars are commutative Dot product is commutative = Tjkb ⋅
ek ej
a= b ⋅ Tjk
ek ej
a= b ⋅ Tkj
ej ek
a= b ⋅ TTa
Definition of tensor product Scatter scalars
Rename dummy indices Definition of tensor transpose
By identification with the penultimate line of the derivation we can observe that the components satisfy [TT]
kj = [T]jk.
11. Show that the tensor TTT is symmetric.
A tensor A is symmetric if u ⋅ Av = v ⋅ Au for any vectors u and v. Let A ≡ TTT
and proceed as follows:
u ⋅
TTT
v = u ⋅ TTTv= Tu ⋅ Tv
By definition of composition of tensors By definition of transpose of tensor
= TTTu) ⋅ v
=
TTT
u ⋅ v= v ⋅
TTT
uBy definition of transpose of tensor By definition composition of tensors By commutativity of dot product of vectors
12. Consider any two tensors S and T. Prove the following:
(a) det
TT
= det T(b) detST = detS detT
(c) [ST]T= TTST
(d) [ST]−1= T−1S−1
(a) det
TT
= det T. The determinant of a tensor T can be computed from itscom-ponents as
detT =16TimTjnTkpÁijkÁmnp
Noting that the components of TT are [TT] ij= Tji
det
TT
=16TmiTnjTpkÁijkÁmnp
=16TmiTnjTpkÁmnpÁijk
Changing the dummy index i to m, j to n, k to p, and vice--versa ⇒ det
TT
=1(b) detST = detS detT. Recall that
u × v) ⋅ w = det
u v w
Therefore, we can compute the determinant of a tensor S as det(S) = det
S1 S2
S2 = S1× S2) ⋅ S3
where the components of a vector Siare
Si]j= Sij. Thus, we can compute thedeter-minant of S as
detS = S1iS2jS3kÁijk= S1iS2jS3kÁijk
detT = T1iT2jT3kÁijk= T1iT2jT3kÁijk
detS detT = S1iS2jS3kÁijkdetT
Note that
ÁijkdetT = ÁijkT1pT2mT3nÁpmn= TipTjmTknÁpmn
⇒ detS detT = S1iS2jS3kTipTjmTknÁpmn
= (S1iTip) (S2jTjm)(S3kTkn)Ápmn
= [ST]1p[ ST]2m[ST ]3nÁpmn= detST
(c) [ST]T= TTST. From the definition of the product of two tensors
ST = SikTkj[ei ej] [ST]T = S ikTkj[ej ei] = SjkTki[ei ej] Similarly, TTST = [TT] ik[ ST]kj[ei ej] = TkiSjk[ei ej] = SjkTki[ei ej] = [ST]T
(d) [ST]−1= T−1S−1. From the definition of the inverse of a tensor, for this
[ST]−1[ST] = [ T−1S−1][ST] = I
But,
[T−1S−1][ST ] = T−1[S−1S] T = T−1[I] T = T−1T = I
⇒ [ST]−1= T−1S−1
13. Consider two Cartesian coordinate systems, one with basis {e1, e2, e3} and the other with basis {g1, g2, g3}. Let Qij≡ gi⋅ ejbe the cosine of the angle between giand ej.
(a) Show that gi= Qijejand ej= Qijgirelate the two sets of base vectors.
(b) We can define a rotation tensor Q such that ei= Qgi. Show that this tensor can be
expressed as Q ≡ Qij[gi gj], that is, Qijare the components of Q with respect to
the basis [gi gj]. Show that the tensor can also be expressed in the form
Q = [ei gi].
(c) We can define a rotation tensor QT, such that g
i= QTei(the reverse rotation from
part (b). Show that this tensor can be expressed as QT≡ Q
ij[ej ei], that is, Qijare
the components of QTwith respect to the basis [e
j ei]. Show that the tensor can also
be expressed in the form QT= [g i ei].
(d) Show that QTQ = I, which implies that the tensor Q is orthogonal.
(a) Show that gi= Qijejand ej= Qijgirelate the two sets of base vectors.
Qik = gi⋅ ek = Qijej⋅ ek = Qijδjk = Qik
Qkj = gk⋅ ej = gk⋅ Qijgi = Qijδki = Qkj
(b) We can define a rotation tensor Q such that ei= Qgi. Show that this tensor can be
expressed as Q ≡ Qij[gi gj], that is, Qijare the components of Q with respect to the
basis [gi gj]. Show that the tensor can also be expressed in the form Q = [ei gi].
Qgk = Qij
gi gj
gk= Qij
gj⋅ gk
gi = Qijδjkgi = Qikgi = ekQgk = ei gigk= gi⋅ gkei = δikei = ek
(c) We can define a rotation tensor QT, such that g
i= QTei(the reverse rotation from
part (b). Show that this tensor can be expressed as QT≡ Q
ij[ej ei], that is, Qijare
the components of QTwith respect to the basis [e
j ei]. Show that the tensor can also
be expressed in the form QT= [g i ei].
QTe
k = Qij
ej ei
ek= Qijei⋅ ekej = Qijδikej = Qkjej = gkQTe
k = gi eiek= ei⋅ ekgi = δikei = ek
QTQ = g
i ei[ej gj] =
ei⋅ ej
[gi gj] = δij[gi gj] = [gi gi] = I14. The components of tensors T and S and the components of vectors u and v are
u ~ 1 1 2 v ~ 1 1 1 S ~ 0 --2 1 2 0 --1 --1 1 0 T ~ 12 20 01 0 1 2
Compute the components of the vector Su. Find the cosine of the angle between u and Su. Compute the determinants of T, S, and TS. Compute TijTijand uiTikSkjvj.
(a) Compute the components of the vector Su. = 1 1 2 Su ~ 0 --2 1 2 0 --1 --1 1 0 0 0 0 (b) Find the cosine of the angle between u and Su.
Since Su has zero length, the angle between u and Su cannot be determined. (c) Compute the determinants of T, S, and TS.
det (T) = --9; det (S) = 0; det(TS) = det(T)det(S) = 0
(d) Compute TijTijand uiTikSkjvj. Note that TijTij= tr
T TT
= tr
T2
since T issymmetric 1 2 0 2 0 1 0 1 2 T2~ 12 20 01 0 1 2 = 5 2 2 2 5 2 2 2 5 ⇒ TijTij= tr
T2
= 15 Similarly uiTikSkjvj= u ⋅ TSv 0 --2 1 2 0 --1 --1 1 0 TSv ~ 12 20 01 0 1 2 1 1 1 = 1 --2 1 uiTikSkjvj= u ⋅ TSv = 115. Verify that, for the particular case given here, the components of the tensor T and the
2 --1 0 --1 2 --1 0 --1 2 T ~ T−1 ~ 1 4 3 2 1 2 4 2 1 2 3
That this is actually the inverse can be verified by multiplying the components of the tensor and its inverse together to get the identity
1 4 3 2 1 2 4 2 1 2 3 2 --1 0 --1 2 --1 0 --1 2 1 0 0 0 1 0 0 0 1 =
16. Consider two bases: e1, e2, e3 and g1, g2, g3. The basis g1, g2, g3 is given in
terms of the base vectors e1, e2, e3 as
g1= 1
3
e1+e2+e3, g2=16 2e1−e2−e3, g3=12e2−e3
The components of the tensor T and vector v, relative to the basis e1, e2, e3 are
T ~ 0 --11 0 --11
--1 1 0
v ~ 12 3
Compute the components of the vector Tv in both bases. Compute the nine values of
TijTjkTkl(i.e., for i, l = 1, 2 ,3). Find the components of the tensor [T+TT]. Compute Tii.
(a) Compute the components of the vector Tv in both bases. In the basis e1, e2, e3
Tv = = --21 1 1 2 3 0 --1 1 1 0 --1 --1 1 0
Let bi= Tvibe the i--th component of Tv relative to the basis g1, g2, g3
bi = Tv ⋅ gi = (e1--2e2+e3) ⋅ gi ⇒ b1= 1 3 -- 23+ 2 =3 0 b2= 2 6 + 26-- 1 =6 3 6 b3= -- 2 2 -- 1 =2 -- 32
(b) Compute the nine values of TijTjkTkl(i.e., for i, l = 1, 2 ,3). --2 1 1 1 --2 1 1 1 --2 TijTjk = 0 --1 1 1 0 --1 --1 1 0 0 --1 1 1 0 --1 --1 1 0 =
TijTjk
Tkl= 0 --1 1 1 0 --1 --1 1 0 0 3 --3 --3 0 3 3 --3 0 = --2 1 1 1 --2 1 1 1 --2(c) Find the components of the tensor [T+TT].
T + TT
= 0 --1 1 1 0 --1 --1 1 0 0 0 0 0 0 0 0 0 0 = 0 1 --1 --1 0 1 1 --1 0 + (d) Compute Tii. Tii = T11+ T22+ T33 = 017. Consider two bases: e1, e2, e3 and g1, g2, g3, where
g1= e1+e2+e3, g2= e2+e3, g3= e2−e3
Compute Qijfor the given bases. Compute the value of QikQjk. Explain why the identity
QikQjk= δijdoes not hold in this case.
Now consider a vector v = e1+2e2+3e3and a tensor T given as
T = e2 e1−e1 e2 + e3 e1−e1 e3 + e3 e2−e2 e3
Compute the components of the vector Tv in both bases, i.e., find viand v^iso that the
fol-lowing relationship holds Tv = viei= v^igi. Find the cosine of the angle between the
vec-tor v and the vecvec-tor Tv. Find the length of the vecvec-tor Tv.
(a) Compute Qijfor the given bases. Recall that Qij= gi⋅ ejor the ij--th component
of Q is the j--th component of giin the basis e1, e2, e3
⇒ Qij=
1 1 1
0 1 1
0 1 --1
(b) Compute the value of QikQjk. Explain why the identity QikQjk= δijdoes not hold
in this case. 3 2 0 2 2 0 0 0 2 QijQkj = 1 1 1 0 1 1 0 1 --1 = 1 0 0 1 1 1 1 1 --1
For the idendity QikQjk= δijto hold, the base vectors g1, g2, g3 have to be
orthogo-nal and of unit length. It can be observed that g1and g2are not orthogonal, which leads to the non--zero off diagonal terms in Q. The diagonal entries in Q are not equal to 1 because the base vectors are not of unit length.
(c) Now consider a vector v = e1+2e2+3e3and a tensor T given as
T = e2 e1−e1 e2 + e3 e1−e1 e3 + e3 e2−e2 e3
Compute the components of the vector Tv in both bases, i.e., find viand v^iso that
the following relationship holds Tv = viei= v^igi.
In the basis e1, e2, e3 Tv = = --5--2 3 1 2 3 0 --1 --1 1 0 --1 1 1 0 Let v^
i= Tvibe the i--th component of Tv relative to the basis g1, g2, g3
v^ i = Tv ⋅ gi = (--5 e1--2e2+3e3) ⋅ gi ⇒ v^ 1= − 5 − 2 + 3 = − 4 v^ 2= − 2 + 3 = 1 v^ 3= − 2 − 3 = − 5
(d) Find the cosine of the angle between the vector v and the vector Tv.
cos θ(Tv, v) = Tv ⋅ v
‖ Tv ‖‖ v ‖ = −
5(1) − 2(2) + 3(3)
‖ Tv ‖ ‖ v ‖ = 0
(e) Find the length of the vector Tv.
‖ Tv ‖= Tv ⋅ Tv
= 3818. A general nth-order tensor invariant can be defined as follows
fn(T) ≡ Ti1 i2Ti2 i3⋅⋅⋅ Tin i1
where {i1, i2, . . ., in} are the n indices. For example, when n = 2 we can use {i, j} to give
f2(T) = TijTji; when n = 3 we can use {i, j, k} to give f3(T) = TijTjkTki. Prove that
fn(T) is invariant with respect to coordinate transformation.
Let the sets of indices { j1, j2, . . ., jn} and {k1, k2, . . ., kn} be identical to the set
the tensor T from one coordinate system to another as T^ij= QimQjnTmn. Observe that
the Qijterms can be rearranged and the identity QikQij= δijcan be used pairwise to
eliminate the Qij. To wit,
fn(T) ≡ Ti1 i2Ti2 i3⋅⋅⋅ Tin i1 = Qi1 j1Qi2 k2T^j1 k2Qi2 j2Qi3 k3T^j2 k3⋅⋅⋅ Qin jnQi1 k1T ^ jn k1 = Qi1 j1Qi1 k1T^j1 k2Qi2 k2Qi2 j2T^j2 k3⋅⋅⋅ Qin knQin jnT ^ jn k1 = δj1 k1T^j1 k2δj2 k2T^j2 k3⋅⋅⋅ δjn knT ^ jn k1 = T^k1 k2T^k2 k3⋅⋅⋅ T^kn k1
Since the final expression does not depend upon the basis it is invariant.
19. Use the Cayley-Hamilton theorem to prove that for n ≥ 4 all of the invariants fn(T),
defined in Problem 18, can be computed from f1(T), f2(T), and f3(T).
First let n = 4, f4(T) = tr(T4). According to the Cayley--Hamilton theorem
T3− I
TT2+ IITT − IIITT = 0
Operating on both sides with T
T4− I
TT3+ IITT2− IIITT = 0
⇒ T4= I
TT3− IITT2+ IIITT
Taking the trace of both sides leads to
f4
T) = tr
T4) = 2 ITIIIT− (IIT)2Following a similar procedure we can find that
T5= I
TT4− IITT3+ IIITT2
f5
T) = IIf4(T) = 2 I2TIIIT− II2TITBy extension, it can be seen that for any n ≥ 4 all of the invariants fn(T) can be
20. From any tensor T one can compute an associated deviator tensor Tdevwhich has the
property that the deviator tensor has no trace, i.e., trTdev = 0. Such a tensor can be
ob-tained from the original tensor T simply by subtracting α ≡13trT times the identity
from the original tensor, i.e., Tdev= T−αI. Show that trTdev = 0. Show that the
prin-cipal directions of Tdevand T are identical, but that the principal values of Tdevare reduced
by an amount α from those of the tensor T.
(a) Show that trTdev = 0.
trT′ = tr T−pI = trT − 3p = trT − trT = 0
(b) Show that the principal directions of Tdevand T are identical, but that the
princi-pal values of Tdevare reduced by an amount α from those of the tensor T. Let m and n
be a principal value and a principal direction of the stress tensor S. By definition, then
Sn = mn. Now S = S′+pI. Therefore, the eigenvalue problem can be recast as
S′+pIn = mn, ⇒ S′n = m−pn
By definition of the eigenvalue problem we can observe that n is, indeed, a principal direction of the deviatoric stress tensor S′ corresponding to principal value m−p.
21. Consider a tensor T that has all repeated eigenvalues m1= m2= m3≡ m. Show that
the tensor T must have the form T = mI.
Let n1, n2, and n3be eigenvectors of T. Further assume that these vectors are orthogonal (remember, if they are not already orthogonal they can always be ortho-gonalized by the Gram-Schmidt process). By the spectral decomposition theorem
T =
3 i=1 mini ni = m
3 i=1 ni ni = mISince the sum of outer products of any orthogonal set of vectors is equal to the identity tensor.
22. Prove that the product of a tensor with itself n times can be represented as
Tn =
3 i=1mi n
Hint: Observe that [ni ni][nj nj] = δij[ni nj] (no summation implied).
Let us assume that we have proven the result for Tn−1. Compute Tnas the
prod-uct of Tn−1and T: Tn = Tn−1T =
3 i=1 mn−1 i ni ni
3 j=1 mjnj nj =
3 i=1
3 j=1 mn−1 i mjni ni
nj nj
=
3 i=1
3 j=1 mn−1 i mj
ni nj
δij =
3 i=1 mn ini niSince the spectral decomposition clearly holds for n=1, the proof is complete by in-duction.
23. Show that the determinant of the tensor T can be expressed as follows
detT = 13tr
T3
−12ITtr
T2
+16IT3where IT= trT = Tiiis the first invariant of T. Use the Cayley-Hamilton theorem.
The Cayley-Hamilton theorem says that
T3− I
TT2+ IITT − IIITI = 0
where IT= trT, IIT, and IIIT= det T are invariants of T. Taking the trace of the
above expression gives tr(T3) − I
Ttr(T2) + IITtr(T) − 3 det T = 0
Note that (trT)2−tr(T2) = 2II
T(one can show this identity with a component
com-putation). Substituting for IITin the above expression gives
tr(T3) − I
Ttr(T2) +12
I2T−tr(T2)
IT− 3 det T = 0Finally, rearranging the expression we get det T = 13tr(T3) −1
As an alternate approach we can observe that if the identity is proven in one coor-dinate system then it is proven in all coorcoor-dinate systems. Let us select the principal coordinates. Then tr(T3) = m3
1+m32+m33and tr(T2) = m21+m22+m23. Now we can
com-pute = 13
m3 1+m32+m33
−21m1+m2+m3
m21+m22+m23
+16m1+m2+m33 = m1m2m3 = det T det T = 13tr(T3) −1 2ITtr(T2) +16I3T24. A certain state of deformation at a point in a body is described by the tensor T, having
the components relative to a certain basis of
3 --1 0
--1 5 1
0 1 2
T ~
Find the eigenvalues and eigenvectors of T. Show that the invariants of the tensor T are the same in the given basis and in the basis defined by the eigenvectors for the present case.
(a) Find the eigenvalues and eigenvectors of T.The coefficients of the characteristic equation are the invariants of the tensor: IT= 10, IIT= 29 and IIIT= 25 . Thus, the
characteristic equation is
−m3+ 10m2− 29m + 25 = 0
The three roots of the characteristic equation are m1=1.6228, m2=2.7261 and m3=
5.6511. The corresponding principal directions are
n1= 0.2482, 0.3419, −0.9064
n2= 0.9064, 0.2482, 0.3419 n3= −0.3419, 0.9064, 0.2482
(b) Show that the invariants of the tensor T are the same in the given basis and in the basis defined by the eigenvectors for the present case. The tensor T in the basis defined by eigenvectors is a diagonal matrix and its components are the eigenvalues them-selves. 1.6228 0 2.7261 0 5.6511
T ~
0 0 0 0IT = m1+ m2+ m3 = 10
IIT = m1m2+ m1m3+ m2m3 = 29
IIIT = m1m2m3 = 25
They are the same as the invariants computed above.
25. Find the tensor T that has eigenvalues m1=1, m2=2, and m3=3 with two of the
asso-ciated eigenvectors given by
n1= 1
2
e1+e2, n2=13−2e1+2e2+e3
Is the tensor unique (i.e., is there another one with these same eigenproperties)?
Since the eigenvalues are distinct we can find n3by taking the cross product of
the other two eigenvectors
n3 = n1× n2 = 118e1−e2+4e3
Based on the spectral decomposition theorem in the text, T can be computed as
T =
3 i=1 mini ni In components we have T ~ 12 11 11 00 0 0 0 + 2 9 4 --4 --2 --4 4 2 --2 2 1 + 3 18 1 --1 4 --1 1 --4 4 --4 16 = 181 28 --10 4 --10 28 --4 4 --4 52The tensor T is unique by the spectral decomposition theorem.
26. Find the tensor T that has eigenvalues m1=1, m2=3, and m3=3, with two of the
asso-ciated eigenvectors given by
n1= 1
3
e1+e2+e3, n2=12−e2+e3
The solution is similar to Problem 25. n3 = n1× n2 = 1 6 2e1−e2−e3 T =
3 i=1 mini ni T ~ 13 11 11 11 1 1 1 + 3 2 0 0 0 0 1 --1 0 --1 1 + 3 6 4 --2 --2 --2 1 1 --2 1 1 = 16 14--4 14--4 --4--4 --4 --4 14The eigenvectors n2and n3are not unique because the eigenvalues are repeated. Any linear combination of n2and n3is an eigenvector. The tensor T, however, is unique.
27. A certain state of deformation at a point in a body is described by the tensor T, having
the components relative to a certain basis of
T ~ 10−2
14 2 14
2 --1 --16
14 --16 5
Let the principal values and principal directions be designated as m and n. Show that n1
= (--1, 2, 2) is a principal direction and find m1.The second principal value is m2=
9 × 10−2, find n
2.Find m3and n3with as little computation as possible.
(a) Let the principal values and principal directions be designated as m and n. Show that n1= (--1, 2, 2) is a principal direction and find m1.Assume that n1is a principal
direction of T, with eigenvalue m1× 10−2. Then
= 5−m1 14−m1 2 14 2 −1−m1 − 16 14 − 16 10−2 2 −1 2 0 0 0
From the first equation we have−14 − m1 + 4 + 28 = 0, or m1= −18. To
verify, substitute into the second and third equations − 2 + 2−1 + 18 − 32 = 0 −14 − 2(16) + 25+18 = 0
Therefore n1is a principal direction.
(b) The second principal value is m2= 9 × 10−2, find n 2. = (5−9) (14−9) 2 14 2 (−1−9) − 16 14 − 16 10−2 b 1 a 0 0 0 From the first and second rows
2a + 14b = −5 10a + 16b = 2
a = 1 b = −0.5
⇒ The corresponding eigenvector is n2=132, 2−1.
(c) Find m3and n3with as little computation as possible. The eigenvalue m3can be found from the first invariant of Lagrangian strain tensor and n3can be found from the cross product of the two other principal directions.
IT = T11+ T22+ T33 = 18 = m1+ m2+ m3 = −18 + 9 + m3
The third eigenvalue is m3= 27 × 10−2
n3 = n1× n2 = 13−2, 1, −2
28. The equation for balance of angular momentum can be expressed in terms of a tensor T and the base vectors eias ei× Tei = 0(sum on repeated index implied). What
specif-ic conditions must the components of the tensor T satisfy in order for this equation to be satisfied?
Carry out the computation for the tensor S as follows
ek× Sij[ei ej]ek = Sijek× (ej⋅ ek)ei = Sijδjkek× ei
∴ ek× Sek = Sikek× ei= 0
If k = i then ek× ei= 0 ⇒ S11, S22, S33can be anything. For the rest of the double
summation we have
S12(e2× e1) + S13(e3× e1) + S21(e1× e2) + S23(e3× e2) +
S31(e1× e3) + S32(e2× e3) = 0
S12(−e3) + S13(e2) + S21(e3) + S23(−e1) + S31(−e2) + S32(e1) = 0
n v
Since e1, e2, e3≠ 0, we must have
S32= S23 S13= S31 S21= S12
29. The tensor R that operates on vectors and reflects them
(as in a mirror) with unit normal n is given by
R ≡ I−2 n n
Compute the vector that results from [RR]v. Compute the
length of the vector Rv in terms of the length of v. What is the inverse of the tensor R? Compute the eigenvalues and eigenvectors of R.
(a) Compute the vector that results from [RR]v.
RRv = I − 2n n I − 2n n v = I − 2n n v − 2(n ⋅ v)n
= v − 2(n ⋅ v)n − 2(n ⋅ v)n + 4[n n]n(n ⋅ v) = v − 4(n ⋅ v)n + 4(n ⋅ n)n(n ⋅ v) = v (b) Compute the length of the vector Rv in terms of the length of v.
Rv 2
= Rv ⋅ Rv = (v − 2(n ⋅ v) n) ⋅ (v − 2(n ⋅ v) n)
v ⋅ v − 4(n ⋅ v)2+ 4(n ⋅ v) = v ⋅ v = v 2
∴ Rv = v (c) What is the inverse of the tensor R?
RRv = I v = v ⇒ R--1 = R
(d) Compute the eigenvalues and eigenvectors of R.
R = I − 2 n n = I − n n − n n
From the spectral decomposition theorem, we have one distinct eigenvalue and a pair of repeated eigenvalues
m1= 1; n1= n
30. Let v(x) and u(x) be two vector fields, and T(x) be a tensor field. Compute the
follow-ing expressions in terms of the components (vi, ui, and Tij) of these fields relative to the
basis e1, e2, e3: divTv, ∇u ⋅ Tv, ∇Tv, u Tv
(a) divTv Tv = Tij[ei ej] vkek= Tijvk[ei ej] ek= Tijvkδjkei= Tijvjei div(Tv) = ∂∂x i(Tijvj) = ∂Tij ∂xivj + Tij ∂vj ∂xi (b) ∇u ⋅ Tv ∇(u ⋅ Tv) = ∂∂x k(uiTijvj) ek =
∂ui ∂xkTijvj+ ui ∂Tij ∂xkvj+ uiTij ∂vj ∂xk
ek (c) ∇Tv ∇(Tv) = ∂∂x k
Tijvjei
ek =
∂Tij ∂xkvj+ Tij ∂vj ∂xk
ei ek (d) u Tv. u Tv = ukek Tijvjei =
ukTijvj
ek ei31. Evaluate the following expressions:
(a) div
div x x
(e) ∇xdivx (f) ∇
x ⋅ ∇x ⋅ x
(d) div
x divx x
(c) ∇
‖
∇ ‖ x ‖2
‖2
(b) div
x divxdivx
where x = x1e1+x2e2+x3e3is the position vector in space and all derivatives are with
respect to the coordinates xi.
(a) div
div x x
div(x x) = (xixj),jei = [xi,jxj+ xixj,j] ei = [δijxj+ 3 xj] ei = 4x
div div[x x] = div(4x) = 4(xiei),j⋅ ej = 4 xi,jei⋅ ej = 4 δijδij = 12
(b) div
x divxdivx
div(x div x) = div(3x) = 3div x = 9 div
x divxdivx
= div(9x) = 9 div x = 27 (c) ∇
‖
∇ ‖ x ‖2
‖2
x 2 = xixi ∇ x 2 = (xixi),jej = [xi,jxi+ xixi,j] ej = 2 δijxiej = 2x 2x 2 = 4 x 2 ∇ 2x 2 = 4 ∇ x 2 = 8x (d) div
x divx x
[x x]ij = xixj div[x x] = (xixj),jei = (xi,jxj+ xixj,j) ei = (δijxj+ xiδjj) ei = 4xiei = 4xdiv
x divx x
= div[x 4x] = 4div[x x] = 16x (e) ∇xdivx div x = xi,i = δii = 3 ∇(x div x) = ∇(3x) = 3∇x = 3I (f) ∇
x ⋅ ∇x ⋅ x
∇(x ⋅ x) = (xixi),jej = (xi,jxi+ xixi,j) ej = 2 xjej = 2x ∇(x ⋅ 2x) = 2∇(x ⋅ x) = 4x32. Let v(x) = x2−x3 e1+ x3−x1 e2+ x1−x2 e3. Evaluate the following
expres-sions: ∇v, ∇x ⋅ v, div x v, and ∇x × v, where x = xieiis the position vector.
Evaluate the expressions at the point x = e1+2e2+e3.
(a) ∇v
∇v = --10 1 --10 1
x1 x2 x3 n B (b) ∇x ⋅ v x ⋅ v = (x1x2− x1x3) + (x2x3−x2x1) + (x3x1−x3x2) = 0 ∴∇(x ⋅ v) = 0 (c) div x v x3x1--x2 x3x2--x3 x1x3--x1 x v ~ xx21xx22--x--x33 x2x3--x1 xx21xx11--x--x22 x3x3--x1 x1--x2 div x v ~ x2--x3 x3--x1 (d) ∇x × v x1x3--x1− x2x2--x3 x × v ~ x2x1--x2− x3x3--x1 x3x2--x3− x1x1--x2 x1+x2 --2 x1 --2 x2 ∇ x × v ~ x2+x3 --2 x3 x1+x3 --2 x1 --2 x3 --2 x2
(e) Evaluate the expressions at the point x = e1+2e2+e3.
3 --2 --4 ∇ x × v ~ 3 --2 2 --2 --2 --4 − 1 div x v ~ 1 0
33. Let v(x) be given by the following explicit function v(x) =
x21+x2x3
e1+
x22+x1x3
e2+
x23+x1x2
e3where x is the position vector of any point and has components {x1, x2, x3} relative to the Cartesian coordinate system shown.
The vector field is defined on the spherical region B of unit ra-dius as shown in the sketch. Give an explicit expression for the
unit normal vector field n(x) to the surface of the sphere. Compute the gradient of the vec-tor field v(x). Compute the product [∇v]n, i.e., the gradient of the vecvec-tor field acting on the normal vector. Compute the divergence of the vector field v(x). Compute the integral of div v over the volume of the sphere. Compute the integral of v ⋅ n over the surface of the sphere.
(a) Give an explicit expression for the unit normal vector field n(x) to the surface of the sphere.
n = x = xiei
(b) Compute the gradient of the vector field v(x). ∇v =∂v∂xi j[ei ej] ~ x1 2x1 x2 x2 x3 x3 2x2 x1 2x3
(c) Compute the product [∇v]n, i.e., the gradient of the vector field acting on the normal vector. [∇v] n ~ x1 2x1 x2 x2 x3 x3 2x2 x 1 2x3 x1 x2 x3 = 2 x2 1+ 2 x2x3 2 x2 2+ 2 x1x3 2 x2 3+ 2 x1x2
(d) Compute the divergence of the vector field v(x). div v = tr(∇v) = 2(x1+x2+x3)
(e) Compute the integral of div v over the volume of the sphere. Given the geometry of the problem, it would be best to compute the integral in spherical coordinates using the following transformations (see figure below)
x1= r cos φ cos θ x2= r cos φ sin θ x3= r sin φ
dV = (r dφ )(r cos φ dθ)dr = r2cos φ dφ dθ dr r*d θ dφ θ r *= r cos φ d θ d r r dφ r z x1 φ x2 x3
B div v dV = 2
π∕2 −π∕2
2π 0
1 0r cos φ cos θ + r cos φ sin θ + r sin φr2cos φ dr dθ dφ = 0
(f) Compute the integral of v ⋅ n over the surface of the sphere.
v ⋅ n =
x2x1 x2 x3 x1 x2 h R B
At the surface we have
x1= cos φ cos θ x2= cos φ sin θ x3= sin φ
dA = (1 dφ )(1 cos φ dθ) = cos φ dφ dθ
Ω v ⋅ n dA =
π∕2 −π∕2
2π 0[cos3φcos3θ + cos3φsin3θ + sin3φ
+ 3 cos2φsin φ cos θ sin θ] cos φ dθ dφ = 0
34. Let v(x) be a vector field given by the
follow-ing explicit function
v(x) = x1e1+x2e2 ln
x21+x22
where ln(⋅) indicates the natural logarithm of (⋅). The vector field is defined on the cylindrical
re-gion B of height h and radius R as shown in the sketch. Give an expression for the unit normal vector field n(x) to the for the cylinder (including the ends). Compute the diver-gence of the vector field v(x) and the integral of div v over the volume of the cylinder.
(a) Give an expression for the unit normal vector field n(x) to the for the cylinder (including the ends).
nt= e3for the top surface
nb= − e3for the bottom surface
ns= 1R(x1e1+ x2e2) for the side surface
(b) Compute the divergence of the vector field v(x) and the integral of div v over the volume of the cylinder. Let r2≡ x2
1+ x22. Since v has no components in the direction
of, we will assume that the index range is 1 to 2 instead of 1 to 3 for this problem. Thus, ∂r2 ∂xi= 2xi Note that vi= xi ln r2 ⇒ div v =∂v∂xi i= δiiln r 2+ x ir12 ∂r 2 ∂xi= δiiln r 2+ 2xixi r2 = 2 ln r2+ 2
x1 x2 x3 n B g(x) = 0 where a repeated index implies summation from 1 to 2 .
Computing the integral of div v over the volume would be most conveniently done in cylindrical coordinates. However, we can apply the divergence theorem to find the result more easily. Note that v ⋅ n = 0 on the top and bottom surfaces. On the side surface r2= R2= const. v ⋅ n = ln R2(x 1e1+ x2e2) ⋅ 1R(x1e1+ x2e2) = R ln R2 ⇒
B div v dV =
Ω v ⋅ n dA =
Ωs v ⋅ nsdA = R ln R2As= 2 π R2h ln R235. Consider the scalar field g(x) = x ⋅ x2. Compute div
∇
div ∇g(x)
.g(x) = (xixi)2 ∇g = 2(xixi) ∂∂x j(xkxk)ej= 2(xixi)[δkjxk+ xkδkj]ej= 4xixixjej div(∇g) = ∂∂x j(4xixixj) = 4[δijxixj+ xiδijxj+ xixiδjj] = 20 xixi ∇(div(∇g)) = ∂∂x j(20 xixi)ej= 20[δijxi+ xiδij] ej= 40 xjej div(∇(div(∇g))) = ∂∂x j(40 xj) = 40δjj= 120
36. Let v(x) be given by the following explicit function v(x) = x2+x3 e1+ x1+x3 e2+ x1+x2 e3
where x is the position vector of any point and has components x1, x2, x3 relative to the Cartesian coordinate system as
shown. The vector field is defined on the ellipsoidal region B whose surface is described by the equation g(x) = 2x2
1+x22+2 x23−4 = 0. Give an
ex-pression for the unit normal vector field n(x) to the ellipsoid. Compute the gradient of the vector field v(x). Compute the product [∇v]n, i.e., the gradient of the vector field acting on the normal vector. Compute the divergence of the vector field v(x).
(a) Give an expression for the unit normal vector field n(x) to the ellipsoid. n = ∇ ∇g g ∇g ~ 4 x2 x12 4 x3 ∇g = (4 x1) 2+(2 x 2)2+(4 x3)2
(b) Compute the gradient of the vector field v(x).
∇v ~
0 1 1
1 0 1
1 1 0
(c) Compute the product [∇v]n, i.e., the gradient of the vector field acting on the normal vector. [∇v]n = 1 ∇g 4x2x12 4x3 2 x2+ 4 x3 4 x1+ 4 x3 4 x1+ 2 x2 0 1 1 1 0 1 1 1 0 = 1 ∇g (d) Compute the divergence of the vector field v(x).
div v = tr(∇v) = 0
37. Evaluate the expression div
∇x ⋅ Ax
, where A is a constant tensor (i.e., it does not depend upon x), and the vector x has components x = xiei. The derivatives are to be takenwith respect to the independent variables xi. Express the results in terms of the components
of A and x. x ⋅ Ax = xiAijxj ∇g =∂x∂g kek div v = ∂vk ∂xk ∇(x ⋅ Ax) = ∂∂x k(xiAijxj)ek= (δijAijxj+ xiAijδjk) ek= (Akjxj+ xiAik)ek div(∇(x ⋅ Ax)) = ∂∂x k(Akjxj+ xiAik) = Akjδjk+ δikAik= Akk+ Akk= 2Akk
38. Let g(x) = e−‖ x ‖ 2be a scalar field in three-dimensional space, where ‖ x ‖ is the
dis-tance from the origin to the point x. Qualitatively describe the behavior of the function (a one- or two-dimensional analogy might be helpful). Compute the gradient ∇g of the field. Where does the gradient of the function go to zero?
1 x1 2 3 x2 x3 Let r2≡‖ x ‖2= x
ixibe the radial distance from the origin. Note that
r2
, j = 2rr,j = xi,jxi+ xixi,j = 2δijxi = 2xj ⇒ r,i=xri ∇g(x) = ∂g∂r∂x∂r iei = e −r2(−2r)xi r ei = −2e−r2xiei = −2g(x)xTherefore, the gradient of the given function is ∇g(x) = −2xe−‖ x ‖2. The function has
value g(0) = 1 at the origin and decays exponentially to zero with distance from the origin. The function has a zero gradient at the origin.
39. Consider a tensor field T defined on a tetrahedral
re-gion bounded by the coordinate planes x1= 0, x2= 0,
x3= 0, and the oblique plane 6x1+3x2+2x3= 6, as
shown in the sketch. The tensor field has the particular ex-pression T = b x, where b is a constant vector and x is the position vector x = xiei. Compute the integral of
divT over the volume and the integral of Tn over the surface of the tetrahedron (and thereby show that they give the same result, as promised by the divergence theo-rem). Note that the volume of the tetrahedron of the given dimensions is one.
(a) Compute the integral of divT over the volume.
Tij = bixj⇒ divT = bi∂x∂xi j ei= biδjjei= 3 b
B div T dV =
B 3b dV = 3bV = 3 b (b) Compute the integral of Tn over the surface of the tetrahedron.Face x1= 0 ; n = −e1 Tn = b x(−e1) = −(x ⋅ e1)b = −x1b = 0 Face x2= 0 ; n = −e2 Tn = b x(−e2) = −(x ⋅ e2)b = −x2b = 0 Face x3= 0 ; n = −e3 Tn = b x(−e3) = −(x ⋅ e3)b = −x3b = 0
Face 6x1+3x2+2x3= 6 ;
The normal to the oblique face can be found as
n = ∇ 6x1+3x2+2x3− 6 = 6e1+ 3e2+ 2e3
Normalizing to unit length
n = 17 6e1+ 3 e2+ 2e3 Tn = (x ⋅ n)b = 176x1+3x2+2x3 b = 67 b
Ω TndA =
Ω 6 7 b dA =67 Ab =67 (72) b = 3 b40. Let v(x) = x on a spherical region of radius R, centered at the origin. Compute the
integral of divv over the volume of the sphere and compute the integral of the flux v ⋅ n, where n is the unit normal to the sphere, over the surface of the sphere. Give the result in terms of the radius R.
divv =∂vi ∂xi= ∂xi ∂xi= δii= 3 ⇒
B div v dV = 3
B dV = 3 V = 3 4 π R3 3= 4 π R3The normal to the sphere surface is n = x∕R
⇒
Ωv ⋅ n dA = 1R
Ωx ⋅ x dA = 1R
ΩR2dA = R A = 4 π R3
What does this calculation tell you about the ratio of surface area to volume of a sphere? From the divergence theorem
B
div v dV =
Ω
v ⋅ n dA
Substituting with the results obtained above
41. The Laplacian of a scalar field is a scalar measure of the second derivative of the field,
defined as ∇2g(x) ≡ div∇g(x). Write the component (index) form of the Laplacian of
g in Cartesian coordinates. Compute the Laplacian of the scalar field of Problem 38.
In components, ∇2g(x) ≡ div(∇g(x)) = g,
ii. From Problem 38 note that
g,i= −2g(r)xi where r2≡‖ x ‖2= xixi.
Thus,
g,ii= −2g,ixi+ gxi,i = −2−2gxixi+ 3g =
4r2−6
g(x)Therefore, the Laplacian is ∇2g(x) =
4r2−6
e−‖ x ‖242. ComputedivT, where T(x) = x ⋅ x I−2x x is a tensor field.
Tij = (xkxk) δij− 2 xixj
divT = ∂T∂xij
j ei =
2xkδjkδij− 2 δijxj− 2 xiδjj
ei=
2xjδij− 2 xjδij− 6 xi
ei= − 6xiei= − 6 x43. Let u(x), v(x), and w(x) be vector fields and let T(x) be a tensor field. Compute the
component forms of the following derivatives of products of vectors (a) ∇(u ⋅ v) = (uivi),jej=
ui,jvi+ uivi,j
ej(b) div(u × v) =
uivjÁijk
,k=
ui,kvj+ uivj,k
Áijk(c) ∇(u × v) =
uivjÁijm
,n em en =
ui,nvj+ uivj,n
Áijmem en(d) div(Tv) =
Tijvj
,i= Tij,ivj+ Tijvj,i(e) ∇(u ⋅ Tv) =
uiTijvj
,kek=
ui,kTijvj+ uiTij,kvj+ uiTijvj,k
ek(f) ∇(Tv) =
Tijvj
,kei ek =
Tij,kvj+ Tijvj,k
ei ek(g) div(u v) =
uivj
,jei=
ui,jvj+ uivj,j
ei(i) ∇(u × v) ⋅ w =
uivjwkÁijk
,mem=
ui,mvjwk+ uivj,mwk+ uivjwk,m
Áijkem44. Use the same reasoning that was used to derive the three-dimensional version of the
divergence theorem to develop (a) a one-dimensional version
f (x) x a xi−1 xi b n(xi) n(xi−1) ∆xi
Noting that in one dimension n = 1 for the normal on the right side and n = −1 for the normal on the left side of the segment
div1f (x) ≡ lim ∆xi→0 1 ∆xif (xi) − f (xi−1) ≡ df dx
Divide the region [a,b] into segments with endpoints defined by the x values xo, x1, x2, . . ., xn−1, xn
where xo≡ a and xn≡ b. Let us do the following simple computation
n i=1f (xi) − f (xi−1) = f (x1) − f (a) + f (x2) − f (x1) + . . .
+ f (xn−1) − f (xn−2) + f (b) − f(xn−1) = f (b) − f (a)
Each term appears once with a plus sign and once with a minus sign except for the two end points. Define the “almost divergence” as follows
Di ≡ 1∆x
if (xi) − f (xi−1)
Now we can write