APM462 Lecture Notes

Total Page:16

File Type:pdf, Size:1020Kb

APM462 Lecture Notes APM462 Lecture Notes Yuchen Wang December 28, 2019 Contents 1 Matrix Calculus 3 1.1 Matrix Multiplication . .3 1.2 Partitioned Matrices . .3 1.3 Matrix Differentiation . .4 2 Second-year Calculus Review 5 2.1 Mean Value Theorem in 1 Dimension . .6 2.2 1st Order Taylor Approximation . .6 2.3 2nd Order Mean Value Theorem . .7 2.4 Recall: Definition of gradient . .7 2.5 Mean Value Theorem in n dimension . .7 n 2.6 1st Order Taylor Approximation in R .................................8 n 2.7 2nd Order Mean Value Theorem in R .................................8 n 2.8 2nd Order Taylor Approximation in R ................................8 2.9 Geometric Meaning of Gradient . .9 2.10 Implicit Function Theorem . .9 2.11 Level Sets of f ..............................................9 3 Convex Sets & Functions 9 3.1 Definitions . .9 3.2 Basic Properties of Convex Functions . 10 3.3 Criterions for convexity . 11 3.4 Minimization and Maximization of Convex Functions . 12 4 Basics of Unconstrained Optimization 13 4.1 Extreme Value Theorem . 13 4.2 Unconstrained Optimization . 14 4.3 1st order necessary condition for local minimum . 15 4.4 2nd order necessary condition for local minimum . 15 4.5 2nd order sufficient condition (for interior points) . 16 5 Optimization with Equality Constraints 16 5.1 Definitions of Related Spaces . 16 5.2 Lagrange Multipliers: 1st order necessary condition for local minimum . 17 5.3 2nd order necessary condition for local minimum . 17 5.4 2nd order sufficient condition for local minimum . 18 1 CONTENTS 2 6 Optimization with Inequality Constraints 18 6.1 Kuhn-Tucker conditions: 1st order necessary condition for local minimum . 19 6.2 2nd order necessary conditions for local minimum . 20 6.3 2nd order sufficient conditions . 20 7 Different Computation Methods for Solving Optimum 21 7.1 Newton's Method . 21 7.2 Method of Steepest Descent (Gradient Method) . 23 7.3 Method of Conjugate Direction . 26 7.3.1 Geometric Interpretations of Method of Conjugate Directions . 29 8 Calculus of Variations 30 8.1 Example . 31 8.2 Classical Problem: the Brachistochrone . 33 8.3 General class of problems in Calculus of Variations . 33 n 8.4 Euler-Lagrange Equations in R .................................... 36 8.5 Equality constraints . 38 8.5.1 Isoperimetric constraints . 38 8.5.2 Holonomic constraints . 39 1 MATRIX CALCULUS 3 1 Matrix Calculus Row v.s. Column Vector Our default rule is that every vector is a column vector unless explicitly stated otherwise. This is also known as the numerator layout. n Special case: For f : R ! R, Df is a 1 × n matrix or row vector. 1.1 Matrix Multiplication Definition 1.1.1 Let A be m × n, and B be n × p, and let the product AB be C = AB then C is a m × p matrix, with element (i; j) given by n X cij = aikbkj k=1 for all i = 1; 2; : : : ; m; j = 1; 2; : : : ; p. Proposition 1.1.2 Let A be m × n, and x be n × 1, then the typical element of the product z = Ax is given by n X zi = aikxk k=1 for all i = 1; 2; : : : ; m. Similarly, let y be m × 1, then the typical element of the product zT = yT A is given by n T X zi = akiyk k=1 for all i = 1; 2; : : : ; n. Finally, the scalar resulting from the product α = yT Ax is given by m n X X α = ajkyixk j=1 k=1 1.2 Partitioned Matrices Proposition 1.2.1 Let A be a square, nonsingular matrix of order m. Partition A as A A A = 11 12 A21 A22 so that A11 and A22 are invertible. Then −1 −1 −1 −1 −1 −1 (A11 − A12A22 A21) −A11 A12(A22 − A21A11 A12) A = −1 −1 −1 −1 −1 −A22 A21(A11 − A12A22 A21) (A22 − A21A11 A12) proof: Direct multiplication of the proposed A−1 and A yields A−1A = I 1 MATRIX CALCULUS 4 1.3 Matrix Differentiation Proposition 1.3.1 @A @AT = @x @x Proposition 1.3.2 Let y = Ax where y is m × 1, x is n × 1, A is m × n, and A does not depend on x. Suppose that x is a function of the vector z, while A is independent of z. Then @y @x = A @z @z Proposition 1.3.3 Let the scalar α be defined by α = yT Ax where y is m × 1, x is n × 1, A is m × n, and A is independent of x and y, then @α = yT A @x and @α = xT AT @y Proposition 1.3.4 For the special case where the scalar α is given by the quadratic form α = xT Ax where x is n × 1, A is n × n, and A does not depend on x, then @α = xT (A + AT ) @x proof: By definition n n X X α = aijxixj j=1 i=1 Differentiating with respect to the kth element of x we have n n @α X X = a x + a x @x kj J ik i k j=1 i=1 for all k = 1; 2; : : : ; n, and consequently, @α = xT AT + xT A = xT (AT + A) @x Proposition 1.3.4 For the special case where A is a symmetric matrix and α = xT Ax where x is n × 1, A is n × n, and A does not depend on x, then @α = 2xT A @x 2 SECOND-YEAR CALCULUS REVIEW 5 Proposition 1.3.5 Let the scalar α be defined by α = yT x where y is n × 1, x is n × 1, and both y and x are functions of the vector z. Then @α @y @x = xT + yT @z @z @z Proposition 1.3.6 Let the scalar α be defined by α = xT x where x is n × 1, and x is a functions of the vector z. Then @α @y = 2xT @z @z Proposition 1.3.7 Let the scalar α be defined by α = yT Ax where y is m × 1, A is m × n, x is n × 1, and both y and x are functions of the vector z, while A does not depend on z. Then @α @y @x = xT AT + yT A @z @z @z Proposition 1.3.8 Let A be an invertible, m×m matrix whose elements are functions of the scalar parameter α. Then @A−1 @A = −A−1 A−1 @α @α proof: Start with the definition of the inverse A−1A = I and differentiate, yielding @A @A−1 A−1 + A = 0 @α @α rearranging the terms yields @A−1 @A = −A−1 A−1 @α @α Vector-by-vector Differentiation Identities 1.3.9 Young's Theorem 1.3.10 i.e. Symmetry of second derivatives T [rxyf(x; y)] = ryxf(x; y) proof: This is straightforward by writing out the elements of the matrix. 2 Second-year Calculus Review functions R ! R 2 SECOND-YEAR CALCULUS REVIEW 6 2.1 Mean Value Theorem in 1 Dimension 1 g 2 C on R g(x + h) − g(x) = g0(x + θh) h where θ 2 (0; 1) Or equivalently, g(x + h) = g(x) + hg0(x + θh) 2.2 1st Order Taylor Approximation 1 g 2 C on R g(x + h) = g(x) + hg0(x) + o(h) where o(h) is \little o" of h, the error term. Say a function f(h) = o(h), this means lim f(h) = 0 h!0 h For example, for f(h) = h2, we can say f(h) = o(h), 2 since lim f(h) = lim h = limh = 0 h!0 h h!0 h h!0 proof: (Use MVT): WTS : g(x + h) − g(x) − hg0(x) = o(h) [g(x + h) − g(x)] − hg0(x) [hg0(x + θh)] − hg0(x) lim = lim h!0 h h!0 h = lim g0(x + θh) − g0(x) h!0 = lim g0(x) − g0(x) h!0 = 0 2 SECOND-YEAR CALCULUS REVIEW 7 2.3 2nd Order Mean Value Theorem 2 g 2 C on R h2 g(x + h) = g(x) + hg0(x) + g0(x + θh) 2 for some θ 2 (0; 1) proof: 0 h2 00 2 WTS: g(x + h) − g(x) − hg (x) − 2 g (x) = o(h ) 2 2 2 g(x + h) − g(x) − hg0(x) − h g00(x) [ h g0(x + θh)] − h g00(x) lim 2 = lim 2 2 h!0 h2 h!0 h2 1 = lim (g00(x + θh) − g00(x)) h!0 2 1 = lim (g00(x) − g00(x)) h!0 2 = 0 n multivariate functions: R ! R 2.4 Recall: Definition of gradient n n Gradient of f : R ! R at x 2 R (denoted rf(x)) if exists is a vector characterized by the property: f(x + v) − f(x) − rf(x) · v lim = 0 v!0 jjvjj In Cartesian coordinates, rf(x) = ( @f (x);:::; @f (x)) @x1 @xn 2.5 Mean Value Theorem in n dimension 1 n n f 2 C on R , then for any x; v 2 R , f(x + v) = f(x) + rf(x + θv) · v for some θ 2 (0; 1) proof: Reduce to 1-dimension case g(t) := f(x + tv); t 2 R d g0(t) = f(x + tv) dt n X @f d(x + tv)i = (x + tv) · (by Chain Rule) @x dt i=1 i X @f d(xi + tvi) = (x + tv) · @xi dt X @f = (x + tv) · vi @xi = rf(x + tv) · v (*) 2 SECOND-YEAR CALCULUS REVIEW 8 1 g 2 C on R Using MVT in R: f(x + v) = g(1) = g(0 + 1) = g(0) + 1g0(0 + θ1) (θ 2 (0; 1)) = g(0) + g0(θ) = f(x) + rf(x + θv) · v (by (*)) 2.6 1st Order Taylor Approximation in Rn 1 n f 2 C on R f(x + v) = f(x) + rf(x) · v + o(jjvjj) proof: [f(x + v) − f(x)] − rf(x) · v [rf(x + θv) · v] − rf(x) · v lim = lim jjvjj!0 jjvjj jjvjj!0 jjvjj v = lim [rf(x + θv) − rf(x)] · jjvjj!0 jjvjj v = 0 ( jjvjj is a unit vector, remains 1) 2.7 2nd Order Mean Value Theorem in Rn 2 n f 2 C on R 1 f(x + v) = f(x) + rf(x) · v + vT r2f(x + θv) · v 2 Remarks In this course, r2 means Hessian, not Laplacian.
Recommended publications
  • Mathematics for Dynamicists - Lecture Notes Thomas Michelitsch
    Mathematics for Dynamicists - Lecture Notes Thomas Michelitsch To cite this version: Thomas Michelitsch. Mathematics for Dynamicists - Lecture Notes. Doctoral. Mathematics for Dynamicists, France. 2006. cel-01128826 HAL Id: cel-01128826 https://hal.archives-ouvertes.fr/cel-01128826 Submitted on 10 Mar 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Mathematics for Dynamicists Lecture Notes c 2004-2006 Thomas Michael Michelitsch1 Department of Civil and Structural Engineering The University of Sheffield Sheffield, UK 1Present address : http://www.dalembert.upmc.fr/home/michelitsch/ . Dedicated to the memory of my parents Michael and Hildegard Michelitsch Handout Manuscript with Fractal Cover Picture by Michael Michelitsch https://www.flickr.com/photos/michelitsch/sets/72157601230117490 1 Contents Preface 1 Part I 1.1 Binomial Theorem 1.2 Derivatives, Integrals and Taylor Series 1.3 Elementary Functions 1.4 Complex Numbers: Cartesian and Polar Representation 1.5 Sequences, Series, Integrals and Power-Series 1.6 Polynomials and Partial Fractions
    [Show full text]
  • Matrix Calculus
    Appendix D Matrix Calculus From too much study, and from extreme passion, cometh madnesse. Isaac Newton [205, §5] − D.1 Gradient, Directional derivative, Taylor series D.1.1 Gradients Gradient of a differentiable real function f(x) : RK R with respect to its vector argument is defined uniquely in terms of partial derivatives→ ∂f(x) ∂x1 ∂f(x) , ∂x2 RK f(x) . (2053) ∇ . ∈ . ∂f(x) ∂xK while the second-order gradient of the twice differentiable real function with respect to its vector argument is traditionally called the Hessian; 2 2 2 ∂ f(x) ∂ f(x) ∂ f(x) 2 ∂x1 ∂x1∂x2 ··· ∂x1∂xK 2 2 2 ∂ f(x) ∂ f(x) ∂ f(x) 2 2 K f(x) , ∂x2∂x1 ∂x2 ··· ∂x2∂xK S (2054) ∇ . ∈ . .. 2 2 2 ∂ f(x) ∂ f(x) ∂ f(x) 2 ∂xK ∂x1 ∂xK ∂x2 ∂x ··· K interpreted ∂f(x) ∂f(x) 2 ∂ ∂ 2 ∂ f(x) ∂x1 ∂x2 ∂ f(x) = = = (2055) ∂x1∂x2 ³∂x2 ´ ³∂x1 ´ ∂x2∂x1 Dattorro, Convex Optimization Euclidean Distance Geometry, Mεβoo, 2005, v2020.02.29. 599 600 APPENDIX D. MATRIX CALCULUS The gradient of vector-valued function v(x) : R RN on real domain is a row vector → v(x) , ∂v1(x) ∂v2(x) ∂vN (x) RN (2056) ∇ ∂x ∂x ··· ∂x ∈ h i while the second-order gradient is 2 2 2 2 , ∂ v1(x) ∂ v2(x) ∂ vN (x) RN v(x) 2 2 2 (2057) ∇ ∂x ∂x ··· ∂x ∈ h i Gradient of vector-valued function h(x) : RK RN on vector domain is → ∂h1(x) ∂h2(x) ∂hN (x) ∂x1 ∂x1 ··· ∂x1 ∂h1(x) ∂h2(x) ∂hN (x) h(x) , ∂x2 ∂x2 ··· ∂x2 ∇ .
    [Show full text]
  • Matrix Calculus
    D Matrix Calculus D–1 Appendix D: MATRIX CALCULUS D–2 In this Appendix we collect some useful formulas of matrix calculus that often appear in finite element derivations. §D.1 THE DERIVATIVES OF VECTOR FUNCTIONS Let x and y be vectors of orders n and m respectively: x1 y1 x2 y2 x = . , y = . ,(D.1) . xn ym where each component yi may be a function of all the xj , a fact represented by saying that y is a function of x,or y = y(x). (D.2) If n = 1, x reduces to a scalar, which we call x.Ifm = 1, y reduces to a scalar, which we call y. Various applications are studied in the following subsections. §D.1.1 Derivative of Vector with Respect to Vector The derivative of the vector y with respect to vector x is the n × m matrix ∂y1 ∂y2 ∂ym ∂ ∂ ··· ∂ x1 x1 x1 ∂ ∂ ∂ ∂ y1 y2 ··· ym y def ∂x ∂x ∂x = 2 2 2 (D.3) ∂x . . .. ∂ ∂ ∂ y1 y2 ··· ym ∂xn ∂xn ∂xn §D.1.2 Derivative of a Scalar with Respect to Vector If y is a scalar, ∂y ∂x1 ∂ ∂ y y def ∂ = x2 .(D.4) ∂x . . ∂y ∂xn §D.1.3 Derivative of Vector with Respect to Scalar If x is a scalar, ∂y def ∂ ∂ ∂ = y1 y2 ... ym (D.5) ∂x ∂x ∂x ∂x D–2 D–3 §D.1 THE DERIVATIVES OF VECTOR FUNCTIONS REMARK D.1 Many authors, notably in statistics and economics, define the derivatives as the transposes of those given above.1 This has the advantage of better agreement of matrix products with composition schemes such as the chain rule.
    [Show full text]
  • Higher Order Derivatives 1 Chapter 3 Higher Order Derivatives
    Higher order derivatives 1 Chapter 3 Higher order derivatives You certainly realize from single-variable calculus how very important it is to use derivatives of orders greater than one. The same is of course true for multivariable calculus. In particular, we shall de¯nitely want a \second derivative test" for critical points. A. Partial derivatives First we need to clarify just what sort of domains we wish to consider for our functions. So we give a couple of de¯nitions. n DEFINITION. Suppose x0 2 A ½ R . We say that x0 is an interior point of A if there exists r > 0 such that B(x0; r) ½ A. A DEFINITION. A set A ½ Rn is said to be open if every point of A is an interior point of A. EXAMPLE. An open ball is an open set. (So we are fortunate in our terminology!) To see this suppose A = B(x; r). Then if y 2 A, kx ¡ yk < r and we can let ² = r ¡ kx ¡ yk: Then B(y; ²) ½ A. For if z 2 B(y; ²), then the triangle inequality implies kz ¡ xk · kz ¡ yk + ky ¡ xk < ² + ky ¡ xk = r; so that z 2 A. Thus B(y; ²) ½ B(x; r) (cf. Problem 1{34). This proves that y is an interior point of A. As y is an arbitrary point of A, we conclude that A is open. PROBLEM 3{1. Explain why the empty set is an open set and why this is actually a problem about the logic of language rather than a problem about mathematics.
    [Show full text]
  • Kronecker Products and Matrix Calculus in System Theory
    772 IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS, VOL. CAS-25, NO. 9, ISEFTEMBER 1978 Kronecker Products and Matrix Calculus in System Theory JOHN W. BREWER I Absfrucr-The paper begins with a review of the algebras related to and are based on the developments of Section IV. Also, a Kronecker products. These algebras have several applications in system novel and interesting operator notation will ble introduced theory inclluding the analysis of stochastic steady state. The calculus of matrk valued functions of matrices is reviewed in the second part of the in Section VI. paper. This cakuhs is then used to develop an interesting new method for Concluding comments are placed in Section VII. the identification of parameters of linear time-invariant system models. II. NOTATION I. INTRODUCTION Matrices will be denoted by upper case boldface (e.g., HE ART of differentiation has many practical ap- A) and column matrices (vectors) will be denoted by T plications in system analysis. Differentiation is used lower case boldface (e.g., x). The kth row of a matrix such. to obtain necessaryand sufficient conditions for optimiza- as A will be denoted A,. and the kth colmnn will be tion in a.nalytical studies or it is used to obtain gradients denoted A.,. The ik element of A will be denoted ujk. and Hessians in numerical optimization studies. Sensitiv- The n x n unit matrix is denoted I,,. The q-dimensional ity analysis is yet another application area for. differentia- vector which is “I” in the kth and zero elsewhereis called tion formulas. In turn, sensitivity analysis is applied to the the unit vector and is denoted design of feedback and adaptive feedback control sys- tems.
    [Show full text]
  • Appendix D Matrix Calculus
    Appendix D Matrix calculus From too much study, and from extreme passion, cometh madnesse. Isaac Newton [86, §5] − D.1 Directional derivative, Taylor series D.1.1 Gradients Gradient of a differentiable real function f(x) : RK R with respect to its vector domain is defined → ∂f(x) ∂x1 ∂f(x) ∆ K f(x) = ∂x2 R (1354) ∇ . ∈ . ∂f(x) ∂xK while the second-order gradient of the twice differentiable real function with respect to its vector domain is traditionally called the Hessian ; ∂2f(x) ∂2f(x) ∂2f(x) 2 ∂ x1 ∂x1∂x2 ··· ∂x1∂xK ∂2f(x) ∂2f(x) ∂2f(x) ∆ 2 K 2 ∂x2∂x1 ∂ x2 ∂x2∂x S f(x) = . ··· . K (1355) ∇ . ... ∈ . ∂2f(x) ∂2f(x) ∂2f(x) 2 1 2 ∂xK ∂x ∂xK ∂x ··· ∂ xK © 2001 Jon Dattorro. CO&EDG version 04.18.2006. All rights reserved. 501 Citation: Jon Dattorro, Convex Optimization & Euclidean Distance Geometry, Meboo Publishing USA, 2005. 502 APPENDIX D. MATRIX CALCULUS The gradient of vector-valued function v(x) : R RN on real domain is a row-vector → ∆ v(x) = ∂v1(x) ∂v2(x) ∂vN (x) RN (1356) ∇ ∂x ∂x ··· ∂x ∈ h i while the second-order gradient is 2 2 2 2 ∆ ∂ v1(x) ∂ v2(x) ∂ vN (x) N v(x) = 2 2 2 R (1357) ∇ ∂x ∂x ··· ∂x ∈ h i Gradient of vector-valued function h(x) : RK RN on vector domain is → ∂h1(x) ∂h2(x) ∂hN (x) ∂x1 ∂x1 ··· ∂x1 ∂h1(x) ∂h2(x) ∂hN (x) ∆ ∂x2 ∂x2 ∂x2 h(x) = . ··· . ∇ . . (1358) ∂h1(x) ∂h2(x) ∂hN (x) ∂x ∂x ∂x K K ··· K K×N = [ h (x) h (x) hN (x) ] R ∇ 1 ∇ 2 · · · ∇ ∈ while the second-order gradient has a three-dimensional representation dubbed cubix ;D.1 ∂h1(x) ∂h2(x) ∂hN (x) ∇ ∂x1 ∇ ∂x1 · · · ∇ ∂x1 ∂h1(x) ∂h2(x) ∂hN (x) ∆ 2 ∂x2 ∂x2 ∂x2 h(x) = ∇ .
    [Show full text]
  • Fractional Differential Forms II
    Fractional Differential Forms II Kathleen Cotrill-Shepherd and Mark Naber Department of Mathematics Monroe County Community College Monroe, Michigan, 48161-9746 [email protected] ABSTRACT This work further develops the properties of fractional differential forms. In particular, finite dimensional subspaces of fractional form spaces are considered. An inner product, Hodge dual, and covariant derivative are defined. Coordinate transformation rules for integral order forms are also computed. Matrix order fractional calculus is used to define matrix order forms. This is achieved by combining matrix order derivatives with exterior derivatives. Coordinate transformation rules and covariant derivative for matrix order forms are also produced. The Poincaré lemma is shown to be true for exterior fractional arXiv:math-ph/0301016 13 Jan 2003 differintegrals of all orders excluding those whose orders are non-diagonalizable matrices. AMS subject classification: Primary: 58A10; Secondary: 26A33. Key words and phrases: Fractional differential forms, Fractional differintegrals, Matrix order differintegrals. 1 1. Introduction. The use of differential forms in physics, differential geometry, and applied mathematics is well known and wide spread. There is also a growing use of differential forms in mathematical finance [23], [3]. Many partial differential equations are expressible in terms of differential forms. This notation allows for insights and a geometric understanding of the quantities involved. Recently Maxwell’s equations have been generalized using fractional derivatives, in part, to better understand multipole moments [5]-[8]. Kobelev has also generalized Maxwell’s and Einstein’s equations with fractional derivatives for study on multifractal sets [10]-[12]. Many of the differential equations of finance have also been fractionalized to better predict the pricing of options and equities in financial markets [1], [22], [24], [25].
    [Show full text]
  • Matrix Differential Calculus with Applications to Simple, Hadamard, and Kronecker Products
    JOURNAL OF MATHEMATICAL PSYCHOLOGY 29, 414492 (1985) Matrix Differential Calculus with Applications to Simple, Hadamard, and Kronecker Products JAN R. MAGNUS London School of Economics AND H. NEUDECKER University of Amsterdam Several definitions are in use for the derivative of an mx p matrix function F(X) with respect to its n x q matrix argument X. We argue that only one of these definitions is a viable one, and that to study smooth maps from the space of n x q matrices to the space of m x p matrices it is often more convenient to study the map from nq-space to mp-space. Also, several procedures exist for a calculus of functions of matrices. It is argued that the procedure based on differentials is superior to other methods of differentiation, and leads inter alia to a satisfactory chain rule for matrix functions. c! 1985 Academic Press, Inc 1. INTRODUCTION In mathematical psychology (among other disciplines) matrix calculus has become an important tool. Several definitions are in use for the derivative of a matrix function F(X) with respect to its matrix argument X (see Dwyer & MacPhail, 1948; Dwyer, 1967; Neudecker, 1969; McDonald & Swaminathan, 1973; MacRae, 1974; Balestra, 1976; Nel, 1980; Rogers, 1980; Polasek, 1984). We shall see that only one of these definitions is appropriate. Also, several procedures exist for a calculus of functions of matrices. We shall argue that the procedure based on differentials is superior to other methods of differentiation. These, then, are the two purposes of this paper. We have been inspired to write this paper by Bentler and Lee’s (1978) note.
    [Show full text]
  • Derivatives and Integrals: Matrix Order Operators As an Extension of the Fractional Calculus Cleiton Bittencourt Da Porciúncula
    Derivatives and integrals: matrix order operators as an extension of the fractional calculus Cleiton Bittencourt da Porciúncula UERGS, State University of Rio Grande do Sul, Brazil Independência, Av., Santa Cruz do Sul Campus, ZIP Code: 96816-501 Corresponding author: Phone/Fax Number: +55 51 3715-6926 Email: [email protected] Abstract. A natural consequence of the fractional calculus is its extension to a matrix order of differentiation and integration. A matrix-order derivative definition and a matrix-order integration arise from the generalization of the gamma function applied to the fractional differintegration definition. This work focuses on some results applied to the Riemann- Liouville version of the fractional calculus extended to its matrix-order concept. This extension also may apply to other versions of fractional calculus. Some examples of possible ordinary and partial matrix-order differential equations and related exact solutions are shown. Keywords: matrix-order differintegration, fractional calculus, matrix gamma function, differential operator 1. Introduction There are several good works and reviews about fractional derivatives and integrals. In a general fashion, we may consider a general fractional derivative operator as: 푑훼 푑푝 푥 퐷훼푓(푥) = 푓(푥) = ∫ 퐾 (푥, 푡, 훼)휙 (푓(푡), 푓푛(푡))푑푡 (1.1) 푎 푑푥훼 푑푥푝 푎 퐷 퐷 and a fractional integral operator as: 푥 퐽훼푓(푥) = 퐷−훼푓(푥) = 퐾 (푥, 푡, 훼)휙 (푓(푡), 푓푛(푡))푑푡 푎 ∫푎 퐽 퐽 (1.2) with 훼 ∈ ℂ, 푡, 푥, 푎 ∈ ℜ and 푝 ∈ ℕ. In eqs. (1.1) and (1.2), the kernels 퐾퐷 and 퐾푓 vary according to the version of the fraction differintegration.
    [Show full text]
  • Computing Higher Order Derivatives of Matrix and Tensor Expressions
    Computing Higher Order Derivatives of Matrix and Tensor Expressions Sören Laue Matthias Mitterreiter Friedrich-Schiller-Universität Jena Friedrich-Schiller-Universität Jena Germany Germany [email protected] [email protected] Joachim Giesen Friedrich-Schiller-Universität Jena Germany [email protected] Abstract Optimization is an integral part of most machine learning systems and most nu- merical optimization schemes rely on the computation of derivatives. Therefore, frameworks for computing derivatives are an active area of machine learning re- search. Surprisingly, as of yet, no existing framework is capable of computing higher order matrix and tensor derivatives directly. Here, we close this fundamental gap and present an algorithmic framework for computing matrix and tensor deriva- tives that extends seamlessly to higher order derivatives. The framework can be used for symbolic as well as for forward and reverse mode automatic differentiation. Experiments show a speedup of up to two orders of magnitude over state-of-the-art frameworks when evaluating higher order derivatives on CPUs and a speedup of about three orders of magnitude on GPUs. 1 Introduction Recently, automatic differentiation has become popular in the machine learning community due to its genericity, flexibility, and efficiency. Automatic differentiation lies at the core of most deep learning frameworks and has made deep learning widely accessible. In principle, automatic differentiation can be used for differentiating any code. In practice, however, it is primarily targeted at scalar valued functions. Current algorithms and implementations do not produce very efficient code when computing Jacobians or Hessians that, for instance, arise in the context of constrained optimization problems.
    [Show full text]
  • Matrix Calculus Notes
    Matrix Calculus Notes James Burke 2000 Linear Spaces and Operators X and Y { normed linear spaces with norms k·kx and k·ky. L : X ! Y is a linear transformations (or operators) if L(αx + βz) = αL(x) + βL(z) 8 x; z 2 X and α; β 2 R: L[X; Y] the normed space of continuous linear operators: kT k := sup kT xky 8 T 2 L[X; Y]: kxkx≤1 ∗ X := L[X; R] { topological dual of X with the duality pairing ∗ hφ, xi = φ(x) 8 (φ, x) 2 X × X: The duality pairing gives rise to adjoints of a linear operator: ∗ ∗ ∗ T 2 L[X; Y] defines T 2 L[Y ; X ] by ∗ ∗ ∗ ∗ ∗ hy ; T (x)i = hT (y ); xi 8 (y ; x) 2 Y × X: m i m η { coordinate mapping from Y to R with the basis fy gi=1. Given T 2 L[X; Y], there exist uniquely defined ftij j i = 1; : : : ; m; j = 1; : : : ; ng ⊂ R such that m j X i T x = tijy ; j = 1; : : : ; n: i=1 m×n Therefore, η(T x) = T κ(x) where where (tij) = T 2 R Matrix Representations j n i m fx gj=1 and fy gi=1 are bases for X and Y. Pn j Given x = j=1 ajx 2 X, the linear mapping κ T x −! (a1; : : : ; an) n is a linear isomorphism between X and R and is called the n coordinate mapping from X to R associated with the basis j n fx gj=1.
    [Show full text]
  • Some Important Properties for Matrix Calculus
    Some Important Properties for Matrix Calculus Dawen Liang Carnegie Mellon University [email protected] 1 Introduction Matrix calculation plays an essential role in many machine learning algorithms, among which ma- trix calculus is the most commonly used tool. In this note, based on the properties from the dif- ferential calculus, we show that they are all adaptable to the matrix calculus1. And in the end, an example on least-square linear regression is presented. 2 Notation A matrix is represented as a bold upper letter, e.g. X, where Xm;n indicates the numbers of rows and columns are m and n, respectively. A vector is represented as a bold lower letter, e.g. x, where it is a n × 1 column vector in this note. An important concept for a n × n matrix An;n is the trace Tr(A), which is defined as the sum of the diagonal: n X Tr(A) = Aii (1) i=1 where Aii index the element at the ith row and ith column. 3 Properties The derivative of a matrix is usually referred as the gradient, denoted as r. Consider a function m×n p×q f : R ! R , the gradient for f(A) w.r.t. Am;n is: 0 1 @f @f ··· @f @A11 @A12 @A1n B @f @f ··· @f C @f(A) B @A21 @A22 @A2n C rAf(A) = = B . C @A B . .. C @ . A @f @f ··· @f @Am1 @Am2 @Amn This definition is very similar to the differential derivative, thus a few simple properties hold (the matrix A below is square matrix and has the same dimension with the vectors): T T rxb Ax = b A (2) 1Some of the detailed derivations which are omitted in this note can be found at http://www.cs.berkeley.
    [Show full text]