Tensor Analysis Author: Harald Höller last modified: Licence: Creative Commons Lizenz by-nc-sa 3.0 at

Size: px
Start display at page:

Download "Tensor Analysis Author: Harald Höller last modified: Licence: Creative Commons Lizenz by-nc-sa 3.0 at"

Transcription

1 Tensor Analysis Author: Harald Höller last modified: Licence: Creative Commons Lizenz by-nc-sa 3.0 at Levi-Civita Symbol (Ε - Tensor)

2 2 Tensor_analysis_m6.nb Ε = Ε = Ε = Ε = Ε = Ε = Some useful relations between Ε -tensors and the Kronecker delta Mathematica commands used in the following section In[1]:=? Sum i max Sum f, i, i max evaluates the sum f. Sum f, i, i min, i max starts with i i min. Sum f, i, i min, i max, di uses steps di. Sumexpr, i, i 1, i 2, uses successive values i 1, i 2,. i 1 Sum f, i, i min, i max, j, j min, j max, evaluates the multiple sum i max j max f. i i min j j min In[2]:=? Signature Signaturelist gives the signature of the permutation needed to place the elements of list in canonical order. In[3]:=? KroneckerDelta KroneckerDeltan 1, n 2, gives the Kronecker delta n1 n 2, equal to 1 if all the n i are equal, and 0 otherwise.

3 Tensor_analysis_m6.nb 3 In[4]:=? Table Tableexpr, i max generates a list of i max copies of expr. Tableexpr, i, i max generates a list of the values of expr when i runs from 1 to i max. Tableexpr, i, i min, i max starts with i i min. Tableexpr, i, i min, i max, di uses steps di. Tableexpr, i, i 1, i 2, uses the successive values i 1, i 2,. Tableexpr, i, i min, i max, j, j min, j max, gives a nested list. The list associated with i is outermost. In[5]:=? MatrixForm MatrixFormlist prints with the elements of list arranged in a regular array. Summation of two Ε - tensors over all indices Ε Ε = 6 ijk ijk In[6]:= SumSignaturei, j, k Signaturei, j, k, i, 3, j, 3, k, 3 Out[6]= 6 Summation of two Ε - tensors over last two indices Ε Ε = 2 ijk ljk il

4 4 Tensor_analysis_m6.nb In[7]:= TableSumSignaturei, j, k Signaturel, j, k, j, 3, k, 3, i, 3, l, 3 MatrixForm Out[7]//MatrixForm= Rule of thumb: antisymmetric times symmetric = 0 Ε = 0 ijk ij In[8]:= SumSignaturei, j, k KroneckerDeltai, j, i, 3, j, 3 Out[8]= 0 Contraction of Kronecker delta = 3 ij ij In[9]:= SumKroneckerDeltai, j KroneckerDeltai, j, i, 3, j, 3 Out[9]= 3 Summation of two Kronecker deltas over one index = ij jk ik

5 Tensor_analysis_m6.nb 5 In[10]:= TableSumKroneckerDeltai, j KroneckerDeltaj, k, j, 3, i, 3, k, 3 MatrixForm Out[10]//MatrixForm= Differential Operators in General Coordinates Physics is full of differential operators and in many cases, the simple Euclidean vector space won't provide the coordinates of choice. Thus, often we will have to transform into problem-oriented coordinate systems. With the package "VectorAnalysis", Mathematica supports a list of useful tensorial operations, like gradient, divergence, rotation. In the following section we want to work out some applications to special coordinates and once more compare the Mathematica-way with the "classical" approach. In[11]:= Needs"VectorAnalysis`" Nabla-operator in Cartesian coordinates Classical approach The nabla operator is defined as the sum of derivations with respect to the coordinates times the corresponding base vector. In Cartesian coordinates e x, e y, e z In[12]:= e x : 1, 0, 0 e y : 0, 1, 0 e z : 0, 0, 1

6 6 Tensor_analysis_m6.nb this yields In[15]:= Nabla func, x, y, z Dfuncx, y, z, x e x Dfuncx, y, z, y e y Dfuncx, y, z, z e z Out[15]= func 1,0,0 x, y, z, func 0,1,0 x, y, z, func 0,0,1 x, y, z Example: Scalar function R We want to check the known relation grad r x r and define as a scalar function the lenght of a vector x by r x 2. In[16]:= Rx, y, z : Sqrtx^2 y ^2 z^2 In[17]:= NablaR, x, y, z MatrixForm Out[17]//MatrixForm= x x 2 y 2 z 2 y x 2 y 2 z 2 z x 2 y 2 z 2 The gradient of a scalar is a tensor of rank 1 i.e. a vectorfield.

7 Tensor_analysis_m6.nb 7 Mathematica command Grad At first we need to define the coordinate system. We need the following commands In[18]:=? SetCoordinates SetCoordinatescoordsys sets the default coordinate system to be coordsys with default variables. SetCoordinatescoordsysc 1, c 2, c 3 sets the default coordinate system to be coordsys with variables c 1, c 2, and c 3. In[19]:=? Cartesian Cartesian represents the Cartesian coordinate system with default variables Xx, Yy and Zz. Cartesianx, y, z represents the Cartesian coordinate system with variables x, y, and z. In[20]:= SetCoordinatesCartesianx, y, z Out[20]= Cartesianx, y, z The Grad command simply confirms the upper result. In[21]:=? Grad Grad f gives the gradient, f, of the scalar function f in the default coordinate system. Grad f, coordsys gives the gradient of f in the coordinate system coordsys.

8 8 Tensor_analysis_m6.nb In[22]:= GradSqrtx^2 y ^2 z^2 Out[22]= x x 2 y 2 z 2, y x 2 y 2 z 2, z x 2 y 2 z 2 Example: Vector field In[23]:= Px, y, z : x x 2 y 2 z 2, y x 2 y 2 z 2, z x 2 y 2 z 2 In[24]:= NablaP, x, y, z FullSimplify Out[24]= y 2 z 2 x y x z,,, x 2 y 2 z 2 32 x 2 y 2 z 2 32 x 2 y 2 z 2 32 x y, x 2 y 2 z 2 32 x 2 z 2 y z x z y z,,,, x 2 y 2 z 2 32 x 2 y 2 z 2 32 x 2 y 2 z 2 32 x 2 y 2 z 2 32 x 2 y 2 x 2 y 2 z 2 32 The nabla operator applied on a tensor of rank 1 produces a tensor of rank 2. The divergence of our vector field P is given by the trace of the gradient on P. The divergence is of course a scalar again. In[25]:=? Tr Trlist finds the trace of the matrix or tensor list. Trlist, f finds a generalized trace, combining terms with f instead of Plus. Trlist, f, n goes down to level n in list.

9 Tensor_analysis_m6.nb 9 In[26]:= TrNablaP, x, y, z Out[26]= x 2 x 2 y 2 z 2 32 y 2 x 2 y 2 z 2 32 z 2 x 2 y 2 z x 2 y 2 z 2 In[27]:= FullSimplify Out[27]= 2 x 2 y 2 z 2 Again we confirm with the Mathematica command (Div). In[28]:=? Div Div f gives the divergence, f, of the vector field f in the default coordinate system. Div f, coordsys gives the divergence of f in the coordinate system coordsys. In[29]:= Div x x 2 y 2 z 2, y x 2 y 2 z 2, z x 2 y 2 z 2 FullSimplify Out[29]= 2 x 2 y 2 z 2

10 10 Tensor_analysis_m6.nb Nabla Operator in spherical coordinates The Mathematica-way In[30]:= Clear"Global` " In[31]:=? Spherical Spherical represents the spherical coordinate system with default variables Rr, Ttheta and Pphi. Sphericalr, Θ, Φ represents the spherical coordinate system with variables r, Θ and Φ. In[32]:= SetCoordinatesSphericalr, Θ, Φ Out[32]= Sphericalr, Θ, Φ In[33]:= Gradr Out[33]= 1, 0, 0 In[34]:= Div1, 0, 0 Out[34]= 2 r

11 Tensor_analysis_m6.nb 11 Alternatively Define spherical coordinates by their transformation rules In[35]:= x : r SinΘ CosΦ y : r SinΘ SinΦ z : r CosΘ and determine the Jacobian of the transformation In[38]:= Tij Dx, r, Dx, Θ, Dx, Φ, Dy, r, Dy, Θ, Dy, Φ, Dz, r, Dz, Θ, Dz, Φ Out[38]= CosΦ SinΘ, r CosΘ CosΦ, r SinΘ SinΦ, SinΘ SinΦ, r CosΘ SinΦ, r CosΦ SinΘ, CosΘ, r SinΘ, 0 and determine the base vectors. In[39]:= e r TransposeTij1 e Θ TransposeTij2 e Φ TransposeTij3 Out[39]= CosΦ SinΘ, SinΘ SinΦ, CosΘ Out[40]= r CosΘ CosΦ, r CosΘ SinΦ, r SinΘ Out[41]= r SinΘ SinΦ, r CosΦ SinΘ, 0

12 12 Tensor_analysis_m6.nb In[42]:= Nablaspher func, r, Θ, Φ Dfuncr, Θ, Φ, r e r Dfuncr, Θ, Φ, Θ e Θ Dfuncr, Θ, Φ, Φ e Φ Out[42]= r SinΘ SinΦ func 0,0,1 r, Θ, Φ r CosΘ CosΦ func 0,1,0 r, Θ, Φ CosΦ SinΘ func 1,0,0 r, Θ, Φ, r CosΦ SinΘ func 0,0,1 r, Θ, Φ r CosΘ SinΦ func 0,1,0 r, Θ, Φ SinΘ SinΦ func 1,0,0 r, Θ, Φ, r SinΘ func 0,1,0 r, Θ, Φ CosΘ func 1,0,0 r, Θ, Φ In[43]:= Assumingr 0, FullSimplifySqrtx^2 y ^2 z^2 Out[43]= r In[44]:= Rspherr, Θ, Φ : r In[45]:= NablaspherRspher, r, Θ, Φ FullSimplify Out[45]= CosΦ SinΘ, SinΘ SinΦ, CosΘ The same result looks quite different than the constant vector {1,0,0} from the Mathematica-way. However, the result is in perfect agreement, since it is only a different way of expressing the unit vector in r-direction. In[46]:= e r Out[46]= True

? D. 3 x 2 2 y. D Pi r ^ 2 h, r. 4 y. D 3 x ^ 3 2 y ^ 2, y, y. D 4 x 3 y 2 z ^5, z, 2, y, x. This means take partial z first then partial x

? D. 3 x 2 2 y. D Pi r ^ 2 h, r. 4 y. D 3 x ^ 3 2 y ^ 2, y, y. D 4 x 3 y 2 z ^5, z, 2, y, x. This means take partial z first then partial x PartialsandVectorCalclulus.nb? D D f, x gives the partial derivative f x. D f, x, n gives the multiple derivative n f x n. D f, x, y, differentiates f successively with respect to x, y,. D f, x, x 2, for

More information

Cartesian Tensors. e 2. e 1. General vector (formal definition to follow) denoted by components

Cartesian Tensors. e 2. e 1. General vector (formal definition to follow) denoted by components Cartesian Tensors Reference: Jeffreys Cartesian Tensors 1 Coordinates and Vectors z x 3 e 3 y x 2 e 2 e 1 x x 1 Coordinates x i, i 123,, Unit vectors: e i, i 123,, General vector (formal definition to

More information

Electromagnetism HW 1 math review

Electromagnetism HW 1 math review Electromagnetism HW math review Problems -5 due Mon 7th Sep, 6- due Mon 4th Sep Exercise. The Levi-Civita symbol, ɛ ijk, also known as the completely antisymmetric rank-3 tensor, has the following properties:

More information

2.20 Fall 2018 Math Review

2.20 Fall 2018 Math Review 2.20 Fall 2018 Math Review September 10, 2018 These notes are to help you through the math used in this class. This is just a refresher, so if you never learned one of these topics you should look more

More information

Tensors, and differential forms - Lecture 2

Tensors, and differential forms - Lecture 2 Tensors, and differential forms - Lecture 2 1 Introduction The concept of a tensor is derived from considering the properties of a function under a transformation of the coordinate system. A description

More information

PHY481: Electromagnetism

PHY481: Electromagnetism PHY481: Electromagnetism Vector tools Lecture 4 Carl Bromberg - Prof. of Physics Cartesian coordinates Definitions Vector x is defined relative to the origin of 1 coordinate system (x,y,z) In Cartsian

More information

Cartesian Tensors. e 2. e 1. General vector (formal definition to follow) denoted by components

Cartesian Tensors. e 2. e 1. General vector (formal definition to follow) denoted by components Cartesian Tensors Reference: Jeffreys Cartesian Tensors 1 Coordinates and Vectors z x 3 e 3 y x 2 e 2 e 1 x x 1 Coordinates x i, i 123,, Unit vectors: e i, i 123,, General vector (formal definition to

More information

NIELINIOWA OPTYKA MOLEKULARNA

NIELINIOWA OPTYKA MOLEKULARNA NIELINIOWA OPTYKA MOLEKULARNA chapter 1 by Stanisław Kielich translated by:tadeusz Bancewicz http://zon8.physd.amu.edu.pl/~tbancewi Poznan,luty 2008 ELEMENTS OF THE VECTOR AND TENSOR ANALYSIS Reference

More information

Vector calculus. Appendix A. A.1 Definitions. We shall only consider the case of three-dimensional spaces.

Vector calculus. Appendix A. A.1 Definitions. We shall only consider the case of three-dimensional spaces. Appendix A Vector calculus We shall only consider the case of three-dimensional spaces A Definitions A physical quantity is a scalar when it is only determined by its magnitude and a vector when it is

More information

Mathematical Preliminaries

Mathematical Preliminaries Mathematical Preliminaries Introductory Course on Multiphysics Modelling TOMAZ G. ZIELIŃKI bluebox.ippt.pan.pl/ tzielins/ Table of Contents Vectors, tensors, and index notation. Generalization of the concept

More information

INTEGRALSATSER VEKTORANALYS. (indexräkning) Kursvecka 4. and CARTESIAN TENSORS. Kapitel 8 9. Sidor NABLA OPERATOR,

INTEGRALSATSER VEKTORANALYS. (indexräkning) Kursvecka 4. and CARTESIAN TENSORS. Kapitel 8 9. Sidor NABLA OPERATOR, VEKTORANALYS Kursvecka 4 NABLA OPERATOR, INTEGRALSATSER and CARTESIAN TENSORS (indexräkning) Kapitel 8 9 Sidor 83 98 TARGET PROBLEM In the plasma there are many particles (10 19, 10 20 per m 3 ), strong

More information

PHY481: Electromagnetism

PHY481: Electromagnetism PHY481: Electromagnetism Vector tools Sorry, no office hours today I ve got to catch a plane for a meeting in Italy Lecture 3 Carl Bromberg - Prof. of Physics Cartesian coordinates Definitions Vector x

More information

Tensor Analysis in Euclidean Space

Tensor Analysis in Euclidean Space Tensor Analysis in Euclidean Space James Emery Edited: 8/5/2016 Contents 1 Classical Tensor Notation 2 2 Multilinear Functionals 4 3 Operations With Tensors 5 4 The Directional Derivative 5 5 Curvilinear

More information

A Primer on Three Vectors

A Primer on Three Vectors Michael Dine Department of Physics University of California, Santa Cruz September 2010 What makes E&M hard, more than anything else, is the problem that the electric and magnetic fields are vectors, and

More information

Vector and Tensor Calculus

Vector and Tensor Calculus Appendices 58 A Vector and Tensor Calculus In relativistic theory one often encounters vector and tensor expressions in both three- and four-dimensional form. The most important of these expressions are

More information

Math review. Math review

Math review. Math review Math review 1 Math review 3 1 series approximations 3 Taylor s Theorem 3 Binomial approximation 3 sin(x), for x in radians and x close to zero 4 cos(x), for x in radians and x close to zero 5 2 some geometry

More information

Tensors - Lecture 4. cos(β) sin(β) sin(β) cos(β) 0

Tensors - Lecture 4. cos(β) sin(β) sin(β) cos(β) 0 1 Introduction Tensors - Lecture 4 The concept of a tensor is derived from considering the properties of a function under a transformation of the corrdinate system. As previously discussed, such transformations

More information

1.4 LECTURE 4. Tensors and Vector Identities

1.4 LECTURE 4. Tensors and Vector Identities 16 CHAPTER 1. VECTOR ALGEBRA 1.3.2 Triple Product The triple product of three vectors A, B and C is defined by In tensor notation it is A ( B C ) = [ A, B, C ] = A ( B C ) i, j,k=1 ε i jk A i B j C k =

More information

VECTORS, TENSORS AND INDEX NOTATION

VECTORS, TENSORS AND INDEX NOTATION VECTORS, TENSORS AND INDEX NOTATION Enrico Nobile Dipartimento di Ingegneria e Architettura Università degli Studi di Trieste, 34127 TRIESTE March 5, 2018 Vectors & Tensors, E. Nobile March 5, 2018 1 /

More information

Christoffel Symbols. 1 In General Topologies. Joshua Albert. September 28, W. First we say W : λ n = x µ (λ) so that the world

Christoffel Symbols. 1 In General Topologies. Joshua Albert. September 28, W. First we say W : λ n = x µ (λ) so that the world Christoffel Symbols Joshua Albert September 28, 22 In General Topoloies We have a metric tensor nm defined by, Note by some handy theorem that for almost any continuous function F (L), equation 2 still

More information

The Matrix Representation of a Three-Dimensional Rotation Revisited

The Matrix Representation of a Three-Dimensional Rotation Revisited Physics 116A Winter 2010 The Matrix Representation of a Three-Dimensional Rotation Revisited In a handout entitled The Matrix Representation of a Three-Dimensional Rotation, I provided a derivation of

More information

u z u y u x ChE 342 Vectors 1 VECTORS Figure 1 Basic Definitions Vectors have magnitude and direction: u = i u x + j u y + k u z (1)

u z u y u x ChE 342 Vectors 1 VECTORS Figure 1 Basic Definitions Vectors have magnitude and direction: u = i u x + j u y + k u z (1) ChE 342 Vectors 1 VECTORS u u i k j u u Basic Definitions Figure 1 Vectors have magnitude and direction: u = i u + j u + k u (1) i = [1,0,0] j = [0,1,0] (2) k = [0,0,1] i, j, and k are mutuall orthogonal.

More information

Derivatives in General Relativity

Derivatives in General Relativity Derivatives in General Relativity One of the problems with curved space is in dealing with vectors how do you add a vector at one point in the surface of a sphere to a vector at a different point, and

More information

Some elements of vector and tensor analysis and the Dirac δ-function

Some elements of vector and tensor analysis and the Dirac δ-function Chapter 1 Some elements of vector and tensor analysis and the Dirac δ-function The vector analysis is useful in physics formulate the laws of physics independently of any preferred direction in space experimentally

More information

Exercises in field theory

Exercises in field theory Exercises in field theory Wolfgang Kastaun June 12, 2008 Vectors and Tensors Contravariant vector Coordinate independent definition, e.g. as tangent of a curve. A contravariant vector A is expressed with

More information

Lecture 3: Vectors. Any set of numbers that transform under a rotation the same way that a point in space does is called a vector.

Lecture 3: Vectors. Any set of numbers that transform under a rotation the same way that a point in space does is called a vector. Lecture 3: Vectors Any set of numbers that transform under a rotation the same way that a point in space does is called a vector i.e., A = λ A i ij j j In earlier courses, you may have learned that a vector

More information

Physics 110. Electricity and Magnetism. Professor Dine. Spring, Handout: Vectors and Tensors: Everything You Need to Know

Physics 110. Electricity and Magnetism. Professor Dine. Spring, Handout: Vectors and Tensors: Everything You Need to Know Physics 110. Electricity and Magnetism. Professor Dine Spring, 2008. Handout: Vectors and Tensors: Everything You Need to Know What makes E&M hard, more than anything else, is the problem that the electric

More information

Classical Mechanics in Hamiltonian Form

Classical Mechanics in Hamiltonian Form Classical Mechanics in Hamiltonian Form We consider a point particle of mass m, position x moving in a potential V (x). It moves according to Newton s law, mẍ + V (x) = 0 (1) This is the usual and simplest

More information

Vector analysis. 1 Scalars and vectors. Fields. Coordinate systems 1. 2 The operator The gradient, divergence, curl, and Laplacian...

Vector analysis. 1 Scalars and vectors. Fields. Coordinate systems 1. 2 The operator The gradient, divergence, curl, and Laplacian... Vector analysis Abstract These notes present some background material on vector analysis. Except for the material related to proving vector identities (including Einstein s summation convention and the

More information

Basic mathematics for nano-engineers (II)

Basic mathematics for nano-engineers (II) Basic mathematics for nano-engineers (II) Horia D. Cornean 26/09/2005 I.M.F. Aalborg University, Fredrik Bajers Vej 7G, 9220 Aalborg, Denmark. 1 Vector calculus We will prove several important differential

More information

Physics 6303 Lecture 2 August 22, 2018

Physics 6303 Lecture 2 August 22, 2018 Physics 6303 Lecture 2 August 22, 2018 LAST TIME: Coordinate system construction, covariant and contravariant vector components, basics vector review, gradient, divergence, curl, and Laplacian operators

More information

Classical Mechanics Solutions 1.

Classical Mechanics Solutions 1. Classical Mechanics Solutions 1. HS 2015 Prof. C. Anastasiou Prologue Given an orthonormal basis in a vector space with n dimensions, any vector can be represented by its components1 ~v = n X vi e i. 1)

More information

Lecture Notes Introduction to Vector Analysis MATH 332

Lecture Notes Introduction to Vector Analysis MATH 332 Lecture Notes Introduction to Vector Analysis MATH 332 Instructor: Ivan Avramidi Textbook: H. F. Davis and A. D. Snider, (WCB Publishers, 1995) New Mexico Institute of Mining and Technology Socorro, NM

More information

L8. Basic concepts of stress and equilibrium

L8. Basic concepts of stress and equilibrium L8. Basic concepts of stress and equilibrium Duggafrågor 1) Show that the stress (considered as a second order tensor) can be represented in terms of the eigenbases m i n i n i. Make the geometrical representation

More information

Introduction and Vectors Lecture 1

Introduction and Vectors Lecture 1 1 Introduction Introduction and Vectors Lecture 1 This is a course on classical Electromagnetism. It is the foundation for more advanced courses in modern physics. All physics of the modern era, from quantum

More information

Vectors. Three dimensions. (a) Cartesian coordinates ds is the distance from x to x + dx. ds 2 = dx 2 + dy 2 + dz 2 = g ij dx i dx j (1)

Vectors. Three dimensions. (a) Cartesian coordinates ds is the distance from x to x + dx. ds 2 = dx 2 + dy 2 + dz 2 = g ij dx i dx j (1) Vectors (Dated: September017 I. TENSORS Three dimensions (a Cartesian coordinates ds is the distance from x to x + dx ds dx + dy + dz g ij dx i dx j (1 Here dx 1 dx, dx dy, dx 3 dz, and tensor g ij is

More information

1. Basic Operations Consider two vectors a (1, 4, 6) and b (2, 0, 4), where the components have been expressed in a given orthonormal basis.

1. Basic Operations Consider two vectors a (1, 4, 6) and b (2, 0, 4), where the components have been expressed in a given orthonormal basis. Questions on Vectors and Tensors 1. Basic Operations Consider two vectors a (1, 4, 6) and b (2, 0, 4), where the components have been expressed in a given orthonormal basis. Compute 1. a. 2. The angle

More information

A.1 Appendix on Cartesian tensors

A.1 Appendix on Cartesian tensors 1 Lecture Notes on Fluid Dynamics (1.63J/2.21J) by Chiang C. Mei, February 6, 2007 A.1 Appendix on Cartesian tensors [Ref 1] : H Jeffreys, Cartesian Tensors; [Ref 2] : Y. C. Fung, Foundations of Solid

More information

1.2 Euclidean spacetime: old wine in a new bottle

1.2 Euclidean spacetime: old wine in a new bottle CHAPTER 1 EUCLIDEAN SPACETIME AND NEWTONIAN PHYSICS Absolute, true, and mathematical time, of itself, and from its own nature, flows equably without relation to anything external... Isaac Newton Scholium

More information

Solutions to Sample Questions for Final Exam

Solutions to Sample Questions for Final Exam olutions to ample Questions for Final Exam Find the points on the surface xy z 3 that are closest to the origin. We use the method of Lagrange Multipliers, with f(x, y, z) x + y + z for the square of the

More information

Physics 236a assignment, Week 2:

Physics 236a assignment, Week 2: Physics 236a assignment, Week 2: (October 8, 2015. Due on October 15, 2015) 1. Equation of motion for a spin in a magnetic field. [10 points] We will obtain the relativistic generalization of the nonrelativistic

More information

1.13 The Levi-Civita Tensor and Hodge Dualisation

1.13 The Levi-Civita Tensor and Hodge Dualisation ν + + ν ν + + ν H + H S ( S ) dφ + ( dφ) 2π + 2π 4π. (.225) S ( S ) Here, we have split the volume integral over S 2 into the sum over the two hemispheres, and in each case we have replaced the volume-form

More information

2 Tensor Notation. 2.1 Cartesian Tensors

2 Tensor Notation. 2.1 Cartesian Tensors 2 Tensor Notation It will be convenient in this monograph to use the compact notation often referred to as indicial or index notation. It allows a strong reduction in the number of terms in an equation

More information

Week 6: Differential geometry I

Week 6: Differential geometry I Week 6: Differential geometry I Tensor algebra Covariant and contravariant tensors Consider two n dimensional coordinate systems x and x and assume that we can express the x i as functions of the x i,

More information

PEAT SEISMOLOGY Lecture 2: Continuum mechanics

PEAT SEISMOLOGY Lecture 2: Continuum mechanics PEAT8002 - SEISMOLOGY Lecture 2: Continuum mechanics Nick Rawlinson Research School of Earth Sciences Australian National University Strain Strain is the formal description of the change in shape of a

More information

Mathematics that Every Physicist should Know: Scalar, Vector, and Tensor Fields in the Space of Real n- Dimensional Independent Variable with Metric

Mathematics that Every Physicist should Know: Scalar, Vector, and Tensor Fields in the Space of Real n- Dimensional Independent Variable with Metric Mathematics that Every Physicist should Know: Scalar, Vector, and Tensor Fields in the Space of Real n- Dimensional Independent Variable with Metric By Y. N. Keilman AltSci@basicisp.net Every physicist

More information

Vector analysis and vector identities by means of cartesian tensors

Vector analysis and vector identities by means of cartesian tensors Vector analysis and vector identities by means of cartesian tensors Kenneth H. Carpenter August 29, 2001 1 The cartesian tensor concept 1.1 Introduction The cartesian tensor approach to vector analysis

More information

Spherical Coordinates

Spherical Coordinates SEARCH MATHWORLD Algebra Applied Mathematics Calculus and Analysis Discrete Mathematics Foundations of Mathematics Geometry History and Terminology Number Theory Probability and Statistics Recreational

More information

1. Tensor of Rank 2 If Φ ij (x, y) satisfies: (a) having four components (9 for 3-D). (b) when the coordinate system is changed from x i to x i,

1. Tensor of Rank 2 If Φ ij (x, y) satisfies: (a) having four components (9 for 3-D). (b) when the coordinate system is changed from x i to x i, 1. Tensor of Rank 2 If Φ ij (x, y satisfies: (a having four components (9 for 3-D. Φ i j (x 1, x 2 = β i iβ j jφ ij (x 1, x 2. Example 1: ( 1 0 0 1 Φ i j = ( 1 0 0 1 To prove whether this is a tensor or

More information

Introduction to Tensor Notation

Introduction to Tensor Notation MCEN 5021: Introduction to Fluid Dynamics Fall 2015, T.S. Lund Introduction to Tensor Notation Tensor notation provides a convenient and unified system for describing physical quantities. Scalars, vectors,

More information

Lecture notes on introduction to tensors. K. M. Udayanandan Associate Professor Department of Physics Nehru Arts and Science College, Kanhangad

Lecture notes on introduction to tensors. K. M. Udayanandan Associate Professor Department of Physics Nehru Arts and Science College, Kanhangad Lecture notes on introduction to tensors K. M. Udayanandan Associate Professor Department of Physics Nehru Arts and Science College, Kanhangad 1 . Syllabus Tensor analysis-introduction-definition-definition

More information

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015 Multiple Integrals and Vector Calculus (Oxford Physics) Ramin Golestanian Synopsis and Problem Sets; Hilary 215 The outline of the material, which will be covered in 14 lectures, is as follows: 1. Introduction

More information

Vectors. (Dated: August ) I. PROPERTIES OF UNIT ANSTISYMMETRIC TENSOR

Vectors. (Dated: August ) I. PROPERTIES OF UNIT ANSTISYMMETRIC TENSOR Vectors Dated: August 25 2016) I. PROPERTIE OF UNIT ANTIYMMETRIC TENOR ɛijkɛ klm = δ il δ jm δ im δ jl 1) Here index k is dummy index summation index), which can be denoted by any symbol. For two repeating

More information

Gradient, Divergence and Curl in Curvilinear Coordinates

Gradient, Divergence and Curl in Curvilinear Coordinates Gradient, Divergence and Curl in Curvilinear Coordinates Although cartesian orthogonal coordinates are very intuitive and easy to use, it is often found more convenient to work with other coordinate systems.

More information

1. Divergence of a product: Given that φ is a scalar field and v a vector field, show that

1. Divergence of a product: Given that φ is a scalar field and v a vector field, show that 1. Divergence of a product: Given that φ is a scalar field and v a vector field, show that div(φv) = (gradφ) v + φ div v grad(φv) = (φv i ), j g i g j = φ, j v i g i g j + φv i, j g i g j = v (grad φ)

More information

Cylindrical Coordinates

Cylindrical Coordinates SEARCH MATHWORLD Algebra Applied Mathematics Calculus and Analysis Discrete Mathematics Foundations of Mathematics Geometry History and Terminology Number Theory Probability and Statistics Recreational

More information

Index Notation for Vector Calculus

Index Notation for Vector Calculus Index Notation for Vector Calculus by Ilan Ben-Yaacov and Francesc Roig Copyright c 2006 Index notation, also commonly known as subscript notation or tensor notation, is an extremely useful tool for performing

More information

1 Vectors and Tensors

1 Vectors and Tensors PART 1: MATHEMATICAL PRELIMINARIES 1 Vectors and Tensors This chapter and the next are concerned with establishing some basic properties of vectors and tensors in real spaces. The first of these is specifically

More information

Mathematical Notation Math Calculus & Analytic Geometry III

Mathematical Notation Math Calculus & Analytic Geometry III Mathematical Notation Math 221 - alculus & Analytic Geometry III Use Word or WordPerect to recreate the ollowing documents. Each article is worth 10 points and should be emailed to the instructor at james@richland.edu.

More information

xy 2 e 2z dx dy dz = 8 3 (1 e 4 ) = 2.62 mc. 12 x2 y 3 e 2z 2 m 2 m 2 m Figure P4.1: Cube of Problem 4.1.

xy 2 e 2z dx dy dz = 8 3 (1 e 4 ) = 2.62 mc. 12 x2 y 3 e 2z 2 m 2 m 2 m Figure P4.1: Cube of Problem 4.1. Problem 4.1 A cube m on a side is located in the first octant in a Cartesian coordinate system, with one of its corners at the origin. Find the total charge contained in the cube if the charge density

More information

1 Differential Operators in Curvilinear Coordinates

1 Differential Operators in Curvilinear Coordinates 1 Differential Operators in Curvilinear Coordinates worked out and written by Timo Fleig February/March 2012 Revision 1, Feb. 15, 201 Revision 2, Sep. 1, 2015 Université Paul Sabatier using LaTeX and git

More information

x + ye z2 + ze y2, y + xe z2 + ze x2, z and where T is the

x + ye z2 + ze y2, y + xe z2 + ze x2, z and where T is the 1.(8pts) Find F ds where F = x + ye z + ze y, y + xe z + ze x, z and where T is the T surface in the pictures. (The two pictures are two views of the same surface.) The boundary of T is the unit circle

More information

Main Results of Vector Analysis

Main Results of Vector Analysis Main Results of ector Analysis Andreas Wacker Mathematical Physics, Lund University January 5, 26 Repetition: ector Space Consider a d dimensional real vector space with scalar product or inner product

More information

Before you begin read these instructions carefully:

Before you begin read these instructions carefully: NATURAL SCIENCES TRIPOS Part IB & II (General Friday, 30 May, 2014 9:00 am to 12:00 pm MATHEMATICS (2 Before you begin read these instructions carefully: You may submit answers to no more than six questions.

More information

Contents. Part I Vector Analysis

Contents. Part I Vector Analysis Contents Part I Vector Analysis 1 Vectors... 3 1.1 BoundandFreeVectors... 4 1.2 Vector Operations....................................... 4 1.2.1 Multiplication by a Scalar.......................... 5 1.2.2

More information

Created by T. Madas VECTOR OPERATORS. Created by T. Madas

Created by T. Madas VECTOR OPERATORS. Created by T. Madas VECTOR OPERATORS GRADIENT gradϕ ϕ Question 1 A surface S is given by the Cartesian equation x 2 2 + y = 25. a) Draw a sketch of S, and describe it geometrically. b) Determine an equation of the tangent

More information

Chapter 1. Vector Analysis

Chapter 1. Vector Analysis Chapter 1. Vector Analysis Hayt; 8/31/2009; 1-1 1.1 Scalars and Vectors Scalar : Vector: A quantity represented by a single real number Distance, time, temperature, voltage, etc Magnitude and direction

More information

CONTINUUM MECHANICS. lecture notes 2003 jp dr.-ing. habil. ellen kuhl technical university of kaiserslautern

CONTINUUM MECHANICS. lecture notes 2003 jp dr.-ing. habil. ellen kuhl technical university of kaiserslautern CONTINUUM MECHANICS lecture notes 2003 jp dr.-ing. habil. ellen kuhl technical university of kaiserslautern Contents Tensor calculus. Tensor algebra.................................... Vector algebra.................................

More information

Special and General Relativity (PHZ 4601/5606) Fall 2018 Classwork and Homework. Every exercise counts 10 points unless stated differently.

Special and General Relativity (PHZ 4601/5606) Fall 2018 Classwork and Homework. Every exercise counts 10 points unless stated differently. 1 Special and General Relativity (PHZ 4601/5606) Fall 2018 Classwork and Homework Every exercise counts 10 points unless stated differently. Set 1: (1) Homework, due ( F ) 8/31/2018 before ( ) class. Consider

More information

MAT 211 Final Exam. Spring Jennings. Show your work!

MAT 211 Final Exam. Spring Jennings. Show your work! MAT 211 Final Exam. pring 215. Jennings. how your work! Hessian D = f xx f yy (f xy ) 2 (for optimization). Polar coordinates x = r cos(θ), y = r sin(θ), da = r dr dθ. ylindrical coordinates x = r cos(θ),

More information

Joint Distributions: Part Two 1

Joint Distributions: Part Two 1 Joint Distributions: Part Two 1 STA 256: Fall 2018 1 This slide show is an open-source document. See last slide for copyright information. 1 / 30 Overview 1 Independence 2 Conditional Distributions 3 Transformations

More information

Electromagnetic. G. A. Krafft Jefferson Lab Jefferson Lab Professor of Physics Old Dominion University Physics 804 Electromagnetic Theory II

Electromagnetic. G. A. Krafft Jefferson Lab Jefferson Lab Professor of Physics Old Dominion University Physics 804 Electromagnetic Theory II Physics 704/804 Electromagnetic Theory II G. A. Krafft Jefferson Lab Jefferson Lab Professor of Physics Old Dominion University 04-13-10 4-Vectors and Proper Time Any set of four quantities that transform

More information

Physics 6303 Lecture 3 August 27, 2018

Physics 6303 Lecture 3 August 27, 2018 Physics 6303 Lecture 3 August 27, 208 LAST TIME: Vector operators, divergence, curl, examples of line integrals and surface integrals, divergence theorem, Stokes theorem, index notation, Kronecker delta,

More information

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r (t) = 3 cos t, 0, 3 sin t, r ( 3π

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r (t) = 3 cos t, 0, 3 sin t, r ( 3π 1. a) 5 points) Find the unit tangent and unit normal vectors T and N to the curve at the point P 3, 3π, r t) 3 cos t, 4t, 3 sin t 3 ). b) 5 points) Find curvature of the curve at the point P. olution:

More information

By drawing Mohr s circle, the stress transformation in 2-D can be done graphically. + σ x σ y. cos 2θ + τ xy sin 2θ, (1) sin 2θ + τ xy cos 2θ.

By drawing Mohr s circle, the stress transformation in 2-D can be done graphically. + σ x σ y. cos 2θ + τ xy sin 2θ, (1) sin 2θ + τ xy cos 2θ. Mohr s Circle By drawing Mohr s circle, the stress transformation in -D can be done graphically. σ = σ x + σ y τ = σ x σ y + σ x σ y cos θ + τ xy sin θ, 1 sin θ + τ xy cos θ. Note that the angle of rotation,

More information

Contravariant and Covariant as Transforms

Contravariant and Covariant as Transforms Contravariant and Covariant as Transforms There is a lot more behind the concepts of contravariant and covariant tensors (of any rank) than the fact that their basis vectors are mutually orthogonal to

More information

RANS Equations in Curvilinear Coordinates

RANS Equations in Curvilinear Coordinates Appendix C RANS Equations in Curvilinear Coordinates To begin with, the Reynolds-averaged Navier-Stokes RANS equations are presented in the familiar vector and Cartesian tensor forms. Each term in the

More information

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed.

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. MTH 34 Review for Exam 4 ections 16.1-16.8. 5 minutes. 5 to 1 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. Review for Exam 4 (16.1) Line

More information

Quantum Physics II (8.05) Fall 2004 Assignment 3

Quantum Physics II (8.05) Fall 2004 Assignment 3 Quantum Physics II (8.5) Fall 24 Assignment 3 Massachusetts Institute of Technology Physics Department Due September 3, 24 September 23, 24 7:pm This week we continue to study the basic principles of quantum

More information

Chapter 7. Kinematics. 7.1 Tensor fields

Chapter 7. Kinematics. 7.1 Tensor fields Chapter 7 Kinematics 7.1 Tensor fields In fluid mechanics, the fluid flow is described in terms of vector fields or tensor fields such as velocity, stress, pressure, etc. It is important, at the outset,

More information

Mechanics Physics 151

Mechanics Physics 151 Mechanics Phsics 151 Lecture 8 Rigid Bod Motion (Chapter 4) What We Did Last Time! Discussed scattering problem! Foundation for all experimental phsics! Defined and calculated cross sections! Differential

More information

Syllabus. May 3, Special relativity 1. 2 Differential geometry 3

Syllabus. May 3, Special relativity 1. 2 Differential geometry 3 Syllabus May 3, 2017 Contents 1 Special relativity 1 2 Differential geometry 3 3 General Relativity 13 3.1 Physical Principles.......................................... 13 3.2 Einstein s Equation..........................................

More information

Differential Kinematics

Differential Kinematics Differential Kinematics Relations between motion (velocity) in joint space and motion (linear/angular velocity) in task space (e.g., Cartesian space) Instantaneous velocity mappings can be obtained through

More information

1.3 LECTURE 3. Vector Product

1.3 LECTURE 3. Vector Product 12 CHAPTER 1. VECTOR ALGEBRA Example. Let L be a line x x 1 a = y y 1 b = z z 1 c passing through a point P 1 and parallel to the vector N = a i +b j +c k. The equation of the plane passing through the

More information

Tensors and Special Relativity

Tensors and Special Relativity Tensors and Special Relativity Lecture 6 1 Introduction and review of tensor algebra While you have probably used tensors of rank 1, i.e vectors, in special relativity, relativity is most efficiently expressed

More information

We are already familiar with the concept of a scalar and vector. are unit vectors in the x and y directions respectively with

We are already familiar with the concept of a scalar and vector. are unit vectors in the x and y directions respectively with Math Review We are already familiar with the concept of a scalar and vector. Example: Position (x, y) in two dimensions 1 2 2 2 s ( x y ) where s is the length of x ( xy, ) xi yj And i, j ii 1 j j 1 i

More information

7a3 2. (c) πa 3 (d) πa 3 (e) πa3

7a3 2. (c) πa 3 (d) πa 3 (e) πa3 1.(6pts) Find the integral x, y, z d S where H is the part of the upper hemisphere of H x 2 + y 2 + z 2 = a 2 above the plane z = a and the normal points up. ( 2 π ) Useful Facts: cos = 1 and ds = ±a sin

More information

Getting started: CFD notation

Getting started: CFD notation PDE of p-th order Getting started: CFD notation f ( u,x, t, u x 1,..., u x n, u, 2 u x 1 x 2,..., p u p ) = 0 scalar unknowns u = u(x, t), x R n, t R, n = 1,2,3 vector unknowns v = v(x, t), v R m, m =

More information

1. Rotations in 3D, so(3), and su(2). * version 2.0 *

1. Rotations in 3D, so(3), and su(2). * version 2.0 * 1. Rotations in 3D, so(3, and su(2. * version 2.0 * Matthew Foster September 5, 2016 Contents 1.1 Rotation groups in 3D 1 1.1.1 SO(2 U(1........................................................ 1 1.1.2

More information

Multiple Integrals and Vector Calculus: Synopsis

Multiple Integrals and Vector Calculus: Synopsis Multiple Integrals and Vector Calculus: Synopsis Hilary Term 28: 14 lectures. Steve Rawlings. 1. Vectors - recap of basic principles. Things which are (and are not) vectors. Differentiation and integration

More information

Electromagnetic Theory Prof. Michael J. Ruiz, UNC Asheville (doctorphys on YouTube) Chapter A Notes. Vector Analysis

Electromagnetic Theory Prof. Michael J. Ruiz, UNC Asheville (doctorphys on YouTube) Chapter A Notes. Vector Analysis Electromagnetic Theory Prof. Michael J. Ruiz, UNC Asheville (doctorphys on YouTube) Chapter A Notes. Vector Analysis A0. Vector Figure Courtesy OpenStax College. Vector Addition and Subtraction: Analytical

More information

Module 4M12: Partial Differential Equations and Variational Methods IndexNotationandVariationalMethods

Module 4M12: Partial Differential Equations and Variational Methods IndexNotationandVariationalMethods Module 4M12: Partial Differential Equations and ariational Methods IndexNotationandariationalMethods IndexNotation(2h) ariational calculus vs differential calculus(5h) ExamplePaper(1h) Fullinformationat

More information

231 Outline Solutions Tutorial Sheet 4, 5 and November 2007

231 Outline Solutions Tutorial Sheet 4, 5 and November 2007 31 Outline Solutions Tutorial Sheet 4, 5 and 6. 1 Problem Sheet 4 November 7 1. heck that the Jacobian for the transformation from cartesian to spherical polar coordinates is J = r sin θ. onsider the hemisphere

More information

Rotational motion of a rigid body spinning around a rotational axis ˆn;

Rotational motion of a rigid body spinning around a rotational axis ˆn; Physics 106a, Caltech 15 November, 2018 Lecture 14: Rotations The motion of solid bodies So far, we have been studying the motion of point particles, which are essentially just translational. Bodies with

More information

Without a Vector Calculus Coordinate System

Without a Vector Calculus Coordinate System Classroom Tips and Techniques: Point-and-Click Access to the Differential Operators of Vector Calculus Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction The -operator

More information

Homework 7-8 Solutions. Problems

Homework 7-8 Solutions. Problems Homework 7-8 Solutions Problems 26 A rhombus is a parallelogram with opposite sides of equal length Let us form a rhombus using vectors v 1 and v 2 as two adjacent sides, with v 1 = v 2 The diagonals of

More information

CHAPTER 7 DIV, GRAD, AND CURL

CHAPTER 7 DIV, GRAD, AND CURL CHAPTER 7 DIV, GRAD, AND CURL 1 The operator and the gradient: Recall that the gradient of a differentiable scalar field ϕ on an open set D in R n is given by the formula: (1 ϕ = ( ϕ, ϕ,, ϕ x 1 x 2 x n

More information

Basic concepts to start Mechanics of Materials

Basic concepts to start Mechanics of Materials Basic concepts to start Mechanics of Materials Georges Cailletaud Centre des Matériaux Ecole des Mines de Paris/CNRS Notations Notations (maths) (1/2) A vector v (element of a vectorial space) can be seen

More information

ELEMENTARY LINEAR ALGEBRA

ELEMENTARY LINEAR ALGEBRA ELEMENTARY LINEAR ALGEBRA K. R. MATTHEWS DEPARTMENT OF MATHEMATICS UNIVERSITY OF QUEENSLAND Corrected Version, 7th April 013 Comments to the author at keithmatt@gmail.com Chapter 1 LINEAR EQUATIONS 1.1

More information

Integrals in cylindrical, spherical coordinates (Sect. 15.7)

Integrals in cylindrical, spherical coordinates (Sect. 15.7) Integrals in clindrical, spherical coordinates (Sect. 15.7 Integration in spherical coordinates. Review: Clindrical coordinates. Spherical coordinates in space. Triple integral in spherical coordinates.

More information