Appendix C Some Details of Matrix.Xla(M)

Total Page:16

File Type:pdf, Size:1020Kb

Appendix C Some Details of Matrix.Xla(M) Appendix C Some details of Matrix.xla(m) C.1 Matrix nomenclature For the sake of notational compactness, we will denote a square diagonal matrix by D with elements dii, a square tridiagonal matrix by T with elements tij where | j – i | ≤ 1, most other square matrices by S, rectangular matrices by R, and all matrix elements by mij. A vector will be shown as v, with elements vi, and a scalar as s. Particular values are denoted by x when real, and by z when complex. All optional pa- rameters are shown in straight brackets, [ ]. All matrices, vectors, and scalars are assumed to be real, ex- cept when specified otherwise. All matrices are restricted to two dimensions, and vectors to one dimen- sion. Table C.1 briefly explains some matrix terms that will be used in subsequent tables. With some functions, the user is given the integer option Int of applying integer arithmetic. When a matrix only contains integer elements, selecting integer arithmetic may avoid most round-off problems. On the other hand, the range of integer arithmetic is limited, so that overflow errors may result if the ma- trix is large and/or contains large numbers. Another common option it Tiny, which defines the absolute value of quantities that can be regarded as most likely resulting from round-off errors, and are therefore set to zero. When not activated, the routine will use its user-definable default value. Condition of a matrix: ratio of its largest to smallest singular value Diagonal of a square matrix: the set of terms mij where i = j Diagonal matrix D square matrix with mij = 0 for all off-diagonal elements i ≠ j. Decomposition or factorization: writing a matrix as the product of two or more special matrices False as optional parameter: False = 0 First lower subdiagonal of a square matrix: the set of terms mij where j = i+1 First upper subdiagonal of a square matrix: the set of terms mij where j = i–1 Inverse square matrix S–1 square matrix that satisfies S–1 S = S S–1 = I Hermitean matrix a square matrix for which S*T = S where S* denotes the complex conjugate of S; all symmetric real matrices are Hermitian Hessenberg matrix H a square matrix with mij = 0 for j = i+k, k > 1 Lower triangular matrix L a square matrix with only 0’s below its diagonal Order of a square matrix: its number of rows or columns Orthogonal matrix a real, square matrix with the property S–1 = ST Rank order of largest nonsingular square submatrix of a matrix Rectangular matrix R a matrix with (in general) an unequal number of rows and columns Square matrix S a matrix with an equal number of rows and columns Subdiagonal the set of terms mij where i = j±k where k is an integer T Symmetric matrix a square matrix S with all mij = mji, hence S = S Toeplitz matrix a square matrix with constant elements on each diagonal parallel to the main diagonal Transpose RT matrix after interchanging its rows and columns Triangular matrix T matrix with non-zero terms only on its diagonal and first upper and lower subdiagonals True as optional parameter: True = 1 Uniform matrix repeats its elements on its diagonal and each subdiagonal Unit matrix I square matrix of arbitrary dimension m×m with 1’s on its diagonal, and 0’s above and below it Upper triangular matrix U a square matrix with only 0’s below its diagonal. (Exceptions: the upper triangular matrix R in QR decomposition; the orthogonal matrix U in singular value decomposition.) Table C-1: The nomenclature used 599 C.2 Functions for basic matrix operations C.2.1 Functions with a scalar output Entering the functions listed below does not require the use of Ctrl∪Shift∪Enter. 2 MAbs(R) Absolute value of R ∑mij i, j MCond(R) Condition number κ of a matrix κ computed using singular value decomposition MpCond(R) –log10 of matrix condition number pκ = –log(κ) computed using singular value decomposition MDet(S [,Int] [,Tiny]) Determinant of a square matrix S det[S] Similar to Excel’s =MDETERM(S). Because of rounding errors, both MDET and MDETERM can yield (often different) non-zero answers For a singular matrix. When all elements of S are integer, and Integer is set to True, MDET uses integer mode. Defaults: Integer = False, Tiny = 0. MRank(R) Rank of a matrix MTrace(S) Trace of a square matrix tr(S) = ∑mii i C.2.2 Basic matrix functions Entering the following functions requires the use of Ctrl∪Shift∪Enter MAdd(R1,R2) Addition of two matrices R1+R2 equivalent to Excel’s =R1+R2, as in =B2:D5+F2:H5. MSub(R1,R2) Subtraction of two matrices R1–R2 Equivalent to Excel’s = R1–R2, as in =B2:D5–F2:H5. MT(R) Transpose of a matrix RT equivalent to Excel’s function TRANSPOSE MMult(R1,R2) Product of two matrices R1 R2 Excel’s function is listed here for the sake of completeness MProd(R1,R2,R3,...) Product of two or more matrices R1R2R3... Pay attention to the dimensions, as the function MProd does not check them. MMultS(R,s) Product of a matrix and a scalar sR = Rs equivalent to Excel’s scalar multiplication, as in =3.21*B2:G9. MPow(S,n) Sn = S S S … S (n terms) Sn –1 MInv(S [,Int] [,Tiny]) Inverse of S S similar to Excel’s =MINVERSE(M). Because of rounding errors, both M_INV(M) and MINVERSE(M) can yield (different) non-zero element values for a singular matrix. When Integer is set to True, integer mode is used. Any result smaller in absolute magnitude than Tiny is set to zero. Defaults: Integer = False, Tiny = 0. ∞ n S S MExp(S [,Algo] [,n]) Matrix exponential e = ∑ n=0 n! Uses Padé approximation (the default, Algo = “P”), otherwise the power method. The default stops when convergence is reached. When n is specified, the resulting error can be obtained with =MExpErr(S, n) MExpErr (S ,n) Error term in matrix exponential 600 C.2.3 Vector functions ProdScal(v1,v2) Scalar product of two vectors v1 • v2 ProdVect(v1,v2) Vector product of two vectors v1 v2 v • v VectAngle(v ,v ) Angle between two vectors arccos 1 2 1 2 v1 ⋅ v2 C.3: More sophisticated matrix functions Diagonal or tridiagonal square matrices occur quite frequently in practical problems. When such matrices are of high orders, they can take up a large amount of space, even though most of it will be occupied by zeros. It is then often convenient to store and display m×m diagonal matrices D in compact notation as single m×1 column vectors, and tridiagonal matrices T as m×3 rectangular matrices. A number of special instructions are provided for this space-saving approach. Don’t confuse compact notation with sparse notation, as used in con- nection with sparse matrices, see Table C.10.3. MDetPar(S) Determinant of S containing one symbolic parameter k det[S] Used with Ctrl∪Shift∪Enter yields vector, otherwise output shown as text string. MDet3(T) Determinant of T in n×3 format det[T] There is no need to use Ctrl∪Shift∪Enter, because the output is a scalar. MMult3(T,R) Multiplies a tridiagonal matrix in tricolumnar format T R with a rectangular or square matrix R, or even a vector v. MMultTpz (S,v) Multiplies a Toeplitz matrix in compact (columnar) format and a vector v. For a Toeplitz matrix of order 2n+1, v must be n×1 –1 MBAB(S1,S2) Similarity transform S1 S2 S1 MBlock(S) Transforms reducible, sparse square matrix into block-partitioned form MBlockPerm(S) The permutation matrix for MBlock MDiag(v) Convert vector v into D mii = vi MDiagExtr(S [,d]) Extract the diagonal of S d = 1 for the diagonal, i = j (the default), d = 2 for the first lower subdiagonal, i = j+1. C.4: Functions for matrix factorization The terms matrix factorization and matrix decomposition refer to the same operations, in which a given matrix is expressed as the product of two or more special matrices. This approach is often used to facili- tate finding the required solution. The differences between the various available approaches reflect their general applicability, numerical efficiency, tolerance of ill-conditioning, etc. T SVDD(R) Yields D of R = U D V D The central result of singular value decomposition, providing the singular values σi as well as easy routes to matrix rank r and condition number κ. When R is Hermitian, the σi are the absolute values of its eigenfunctions. Note: the traditional symbol U here does not imply an upper triangular matrix. SVDU(R) Yields U of R = UT D V U SVDV(R) Yields V of R = UT D V V MCholesky(S) Cholesky decomposition S = L L–1 of a symmetric matrix M into a lower triangular square matrix L and its transpose LT 601 MLU(S [,pivot]) LU decomposition into a lower (L) and upper (U) triangular square matrix. S = L U The optional pivot (the default) activates partial pivoting MOrthoGS(R) Modified Gram-Schmidt orthogonalization T MQH(S,v) decomposition of S with vector b S = Q H Q Q is orthogonal, H is Hessenberg. If S is symmetric, H is tridiagonal MQR(R) QR decomposition A = Q R Q is orthogonal, R is upper triangular MHessenberg(S) Converts S into its Hessenberg form H MChar(S, x) Computes characteristic matrix at real value x If x complex, use MCharC(S, z) MCharPoly(S) Computes characteristic polynomial of S Can often be combined with PolyRoots(P) PolyRoots(P) Finds all roots of a polynomial P PolyRootsQR(P) Finds all roots of a polynomial P using the QR algorithm MNorm(R or v [,Norm]) Finds the matrix or vector norm For matrix R: Norm: 0 (default) = Frobenius, 1 = max.
Recommended publications
  • Stirling Matrix Via Pascal Matrix
    LinearAlgebraanditsApplications329(2001)49–59 www.elsevier.com/locate/laa StirlingmatrixviaPascalmatrix Gi-SangCheon a,∗,Jin-SooKim b aDepartmentofMathematics,DaejinUniversity,Pocheon487-711,SouthKorea bDepartmentofMathematics,SungkyunkwanUniversity,Suwon440-746,SouthKorea Received11May2000;accepted17November2000 SubmittedbyR.A.Brualdi Abstract ThePascal-typematricesobtainedfromtheStirlingnumbersofthefirstkinds(n,k)and ofthesecondkindS(n,k)arestudied,respectively.Itisshownthatthesematricescanbe factorizedbythePascalmatrices.AlsotheLDU-factorizationofaVandermondematrixof theformVn(x,x+1,...,x+n−1)foranyrealnumberxisobtained.Furthermore,some well-knowncombinatorialidentitiesareobtainedfromthematrixrepresentationoftheStirling numbers,andthesematricesaregeneralizedinoneortwovariables.©2001ElsevierScience Inc.Allrightsreserved. AMSclassification:05A19;05A10 Keywords:Pascalmatrix;Stirlingnumber;Stirlingmatrix 1.Introduction Forintegersnandkwithnk0,theStirlingnumbersofthefirstkinds(n,k) andofthesecondkindS(n,k)canbedefinedasthecoefficientsinthefollowing expansionofavariablex(see[3,pp.271–279]): n n−k k [x]n = (−1) s(n,k)x k=0 and ∗ Correspondingauthor. E-mailaddresses:[email protected](G.-S.Cheon),[email protected](J.-S.Kim). 0024-3795/01/$-seefrontmatter2001ElsevierScienceInc.Allrightsreserved. PII:S0024-3795(01)00234-8 50 G.-S. Cheon, J.-S. Kim / Linear Algebra and its Applications 329 (2001) 49–59 n n x = S(n,k)[x]k, (1.1) k=0 where x(x − 1) ···(x − n + 1) if n 1, [x] = (1.2) n 1ifn = 0. It is known that for an n, k 0, the s(n,k), S(n,k) and [n]k satisfy the following Pascal-type recurrence relations: s(n,k) = s(n − 1,k− 1) + (n − 1)s(n − 1,k), S(n,k) = S(n − 1,k− 1) + kS(n − 1,k), (1.3) [n]k =[n − 1]k + k[n − 1]k−1, where s(n,0) = s(0,k)= S(n,0) = S(0,k)=[0]k = 0ands(0, 0) = S(0, 0) = 1, and moreover the S(n,k) satisfies the following formula known as ‘vertical’ recur- rence relation: n− 1 n − 1 S(n,k) = S(l,k − 1).
    [Show full text]
  • R-Based Strategies for DH in English Linguistics: a Case Study
    R-based strategies for DH in English Linguistics: a case study Nicolas Ballier Paula Lissón Université Paris Diderot Université Paris Diderot UFR Études Anglophones UFR Études Anglophones CLILLAC-ARP (EA 3967) CLILLAC-ARP (EA 3967) nicolas.ballier@univ- [email protected] paris-diderot.fr paris-diderot.fr language for research in linguistics, both in a Abstract quantitative and qualitative approach. Developing a culture based on the program- This paper is a position statement advocating ming language R (R Core Team 2016) for NLP the implementation of the programming lan- among MA and PhD students doing English Lin- guage R in a curriculum of English Linguis- guistics is no easy task. Broadly speaking, most tics. This is an illustration of a possible strat- of the students have little background in mathe- egy for the requirements of Natural Language matics, statistics, or programming, and usually Processing (NLP) for Digital Humanities (DH) studies in an established curriculum. R feel reluctant to study any of these disciplines. plays the role of a Trojan Horse for NLP and While most PhD students in English linguistics statistics, while promoting the acquisition of are former students with a Baccalauréat in Sci- a programming language. We report an over- ences, some MA students pride themselves on view of existing practices implemented in an having radically opted out of Maths. However, MA and PhD programme at the University of we believe that students should be made aware of Paris Diderot in the recent years. We empha- the growing use of statistical and NLP methods size completed aspects of the curriculum and in linguistics and to be able to interpret and im- detail existing teaching strategies rather than plement these techniques.
    [Show full text]
  • Pascal Matrices Alan Edelman and Gilbert Strang Department of Mathematics, Massachusetts Institute of Technology [email protected] and [email protected]
    Pascal Matrices Alan Edelman and Gilbert Strang Department of Mathematics, Massachusetts Institute of Technology [email protected] and [email protected] Every polynomial of degree n has n roots; every continuous function on [0, 1] attains its maximum; every real symmetric matrix has a complete set of orthonormal eigenvectors. “General theorems” are a big part of the mathematics we know. We can hardly resist the urge to generalize further! Remove hypotheses, make the theorem tighter and more difficult, include more functions, move into Hilbert space,. It’s in our nature. The other extreme in mathematics might be called the “particular case”. One specific function or group or matrix becomes special. It obeys the general rules, like everyone else. At the same time it has some little twist that connects familiar objects in a neat way. This paper is about an extremely particular case. The familiar object is Pascal’s triangle. The little twist begins by putting that triangle of binomial coefficients into a matrix. Three different matrices—symmetric, lower triangular, and upper triangular—can hold Pascal’s triangle in a convenient way. Truncation produces n by n matrices Sn and Ln and Un—the pattern is visible for n = 4: 1 1 1 1 1 1 1 1 1 1 2 3 4 1 1 1 2 3 S4 = L4 = U4 = . 1 3 6 10 1 2 1 1 3 1 4 10 20 1 3 3 1 1 We mention first a very specific fact: The determinant of every Sn is 1. (If we emphasized det Ln = 1 and det Un = 1, you would write to the Editor.
    [Show full text]
  • Arxiv:1904.01037V3 [Math.GR]
    AN EFFECTIVE LIE–KOLCHIN THEOREM FOR QUASI-UNIPOTENT MATRICES THOMAS KOBERDA, FENG LUO, AND HONGBIN SUN Abstract. We establish an effective version of the classical Lie–Kolchin Theo- rem. Namely, let A, B P GLmpCq be quasi–unipotent matrices such that the Jordan Canonical Form of B consists of a single block, and suppose that for all k ě 0 the matrix ABk is also quasi–unipotent. Then A and B have a common eigenvector. In particular, xA, Byă GLmpCq is a solvable subgroup. We give applications of this result to the representation theory of mapping class groups of orientable surfaces. 1. Introduction Let V be a finite dimensional vector space over an algebraically closed field. In this paper, we study the structure of certain subgroups of GLpVq which contain “sufficiently many” elements of a relatively simple form. We are motivated by the representation theory of the mapping class group of a surface of hyperbolic type. If S be an orientable surface of genus 2 or more, the mapping class group ModpS q is the group of homotopy classes of orientation preserving homeomor- phisms of S . The group ModpS q is generated by certain mapping classes known as Dehn twists, which are defined for essential simple closed curves of S . Here, an essential simple closed curve is a free homotopy class of embedded copies of S 1 in S which is homotopically essential, in that the homotopy class represents a nontrivial conjugacy class in π1pS q which is not the homotopy class of a boundary component or a puncture of S .
    [Show full text]
  • The Pascal Matrix Function and Its Applications to Bernoulli Numbers and Bernoulli Polynomials and Euler Numbers and Euler Polynomials
    The Pascal Matrix Function and Its Applications to Bernoulli Numbers and Bernoulli Polynomials and Euler Numbers and Euler Polynomials Tian-Xiao He ∗ Jeff H.-C. Liao y and Peter J.-S. Shiue z Dedicated to Professor L. C. Hsu on the occasion of his 95th birthday Abstract A Pascal matrix function is introduced by Call and Velleman in [3]. In this paper, we will use the function to give a unified approach in the study of Bernoulli numbers and Bernoulli poly- nomials. Many well-known and new properties of the Bernoulli numbers and polynomials can be established by using the Pascal matrix function. The approach is also applied to the study of Euler numbers and Euler polynomials. AMS Subject Classification: 05A15, 65B10, 33C45, 39A70, 41A80. Key Words and Phrases: Pascal matrix, Pascal matrix func- tion, Bernoulli number, Bernoulli polynomial, Euler number, Euler polynomial. ∗Department of Mathematics, Illinois Wesleyan University, Bloomington, Illinois 61702 yInstitute of Mathematics, Academia Sinica, Taipei, Taiwan zDepartment of Mathematical Sciences, University of Nevada, Las Vegas, Las Vegas, Nevada, 89154-4020. This work is partially supported by the Tzu (?) Tze foundation, Taipei, Taiwan, and the Institute of Mathematics, Academia Sinica, Taipei, Taiwan. The author would also thank to the Institute of Mathematics, Academia Sinica for the hospitality. 1 2 T. X. He, J. H.-C. Liao, and P. J.-S. Shiue 1 Introduction A large literature scatters widely in books and journals on Bernoulli numbers Bn, and Bernoulli polynomials Bn(x). They can be studied by means of the binomial expression connecting them, n X n B (x) = B xn−k; n ≥ 0: (1) n k k k=0 The study brings consistent attention of researchers working in combi- natorics, number theory, etc.
    [Show full text]
  • Q-Pascal and Q-Bernoulli Matrices, an Umbral Approach Thomas Ernst
    U.U.D.M. Report 2008:23 q-Pascal and q-Bernoulli matrices, an umbral approach Thomas Ernst Department of Mathematics Uppsala University q- PASCAL AND q-BERNOULLI MATRICES, AN UMBRAL APPROACH THOMAS ERNST Abstract A q-analogue Hn,q ∈ Mat(n)(C(q)) of the Polya-Vein ma- trix is used to define the q-Pascal matrix. The Nalli–Ward–AlSalam (NWA) q-shift operator acting on polynomials is a commutative semi- group. The q-Cauchy-Vandermonde matrix generalizing Aceto-Trigiante is defined by the NWA q-shift operator. A new formula for a q-Cauchy- Vandermonde determinant with matrix elements equal to q-Ward num- bers is found. The matrix form of the q-derivatives of the q-Bernoulli polynomials can be expressed in terms of the Hn,q. With the help of a new q-matrix multiplication certain special q-analogues of Aceto- Trigiante and Brawer-Pirovino are found. The q-Cauchy-Vandermonde matrix can be expressed in terms of the q-Bernoulli matrix. With the help of the Jackson-Hahn-Cigler (JHC) q-Bernoulli polynomials, the q-analogue of the Bernoulli complementary argument theorem is ob- tained. Analogous results for q-Euler polynomials are obtained. The q-Pascal matrix is factorized by the summation matrices and the so- called q-unit matrices. 1. Introduction In this paper we are going to find q-analogues of matrix formulas from two pairs of authors: L. Aceto, & D. Trigiante [1], [2] and R. Brawer & M.Pirovino [5]. The umbral method of the author [11] is used to find natural q-analogues of the Pascal- and the Cauchy-Vandermonde matrices.
    [Show full text]
  • Relation Between Lah Matrix and K-Fibonacci Matrix
    International Journal of Mathematics Trends and Technology Volume 66 Issue 10, 116-122, October 2020 ISSN: 2231 – 5373 /doi:10.14445/22315373/IJMTT-V66I10P513 © 2020 Seventh Sense Research Group® Relation between Lah matrix and k-Fibonacci Matrix Irda Melina Zet#1, Sri Gemawati#2, Kartini Kartini#3 #Department of Mathematics, Faculty of Mathematics and Natural Sciences, University of Riau Bina Widya Campus, Pekanbaru 28293, Indonesia Abstract. - The Lah matrix is represented by 퐿푛, is a matrix where each entry is Lah number. Lah number is count the number of ways a set of n elements can be partitioned into k nonempty linearly ordered subsets. k-Fibonacci matrix, 퐹푛(푘) is a matrix which all the entries are k-Fibonacci numbers. k-Fibonacci numbers are consist of the first term being 0, the second term being 1 and the next term depends on a natural number k. In this paper, a new matrix is defined namely 퐴푛 where it is not commutative to multiplicity of two matrices, so that another matrix 퐵푛 is defined such that 퐴푛 ≠ 퐵푛. The result is two forms of factorization from those matrices. In addition, the properties of the relation of Lah matrix and k- Fibonacci matrix is yielded as well. Keywords — Lah numbers, Lah matrix, k-Fibonacci numbers, k-Fibonacci matrix. I. INTRODUCTION Guo and Qi [5] stated that Lah numbers were introduced in 1955 and discovered by Ivo. Lah numbers are count the number of ways a set of n elements can be partitioned into k non-empty linearly ordered subsets. Lah numbers [9] is denoted by 퐿(푛, 푘) for every 푛, 푘 are elements of integers with initial value 퐿(0,0) = 1.
    [Show full text]
  • Factorizations for Q-Pascal Matrices of Two Variables
    Spec. Matrices 2015; 3:207–213 Research Article Open Access Thomas Ernst Factorizations for q-Pascal matrices of two variables DOI 10.1515/spma-2015-0020 Received July 15, 2015; accepted September 14, 2015 Abstract: In this second article on q-Pascal matrices, we show how the previous factorizations by the sum- mation matrices and the so-called q-unit matrices extend in a natural way to produce q-analogues of Pascal matrices of two variables by Z. Zhang and M. Liu as follows 0 ! 1n−1 i Φ x y xi−j yi+j n,q( , ) = @ j A . q i,j=0 We also find two different matrix products for 0 ! 1n−1 i j Ψ x y i j + xi−j yi+j n,q( , ; , ) = @ j A . q i,j=0 Keywords: q-Pascal matrix; q-unit matrix; q-matrix multiplication 1 Introduction Once upon a time, Brawer and Pirovino [2, p.15 (1), p. 16(3)] found factorizations of the Pascal matrix and its inverse by the summation and difference matrices. In another article [7] we treated q-Pascal matrices and the corresponding factorizations. It turns out that an analoguous reasoning can be used to find q-analogues of the two variable factorizations by Zhang and Liu [13]. The purpose of this paper is thus to continue the q-analysis- matrix theme from our earlier papers [3]-[4] and [6]. To this aim, we define two new kinds of q-Pascal matrices, the lower triangular Φn,q matrix and the Ψn,q, both of two variables. To be able to write down addition and subtraction formulas for the most important q-special functions, i.e.
    [Show full text]
  • Euler Matrices and Their Algebraic Properties Revisited
    Appl. Math. Inf. Sci. 14, No. 4, 1-14 (2020) 1 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.18576/amis/AMIS submission quintana ramirez urieles FINAL VERSION Euler Matrices and their Algebraic Properties Revisited Yamilet Quintana1,∗, William Ram´ırez 2 and Alejandro Urieles3 1 Department of Pure and Applied Mathematics, Postal Code: 89000, Caracas 1080 A, Simon Bol´ıvar University, Venezuela 2 Department of Natural and Exact Sciences, University of the Coast - CUC, Barranquilla, Colombia 3 Faculty of Basic Sciences - Mathematics Program, University of Atl´antico, Km 7, Port Colombia, Barranquilla, Colombia Received: 2 Sep. 2019, Revised: 23 Feb. 2020, Accepted: 13 Apr. 2020 Published online: 1 Jul. 2020 Abstract: This paper addresses the generalized Euler polynomial matrix E (α)(x) and the Euler matrix E . Taking into account some properties of Euler polynomials and numbers, we deduce product formulae for E (α)(x) and define the inverse matrix of E . We establish some explicit expressions for the Euler polynomial matrix E (x), which involves the generalized Pascal, Fibonacci and Lucas matrices, respectively. From these formulae, we get some new interesting identities involving Fibonacci and Lucas numbers. Also, we provide some factorizations of the Euler polynomial matrix in terms of Stirling matrices, as well as a connection between the shifted Euler matrices and Vandermonde matrices. Keywords: Euler polynomials, Euler matrix, generalized Euler matrix, generalized Pascal matrix, Fibonacci matrix,
    [Show full text]
  • An Effective Lie–Kolchin Theorem for Quasi-Unipotent Matrices
    Linear Algebra and its Applications 581 (2019) 304–323 Contents lists available at ScienceDirect Linear Algebra and its Applications www.elsevier.com/locate/laa An effective Lie–Kolchin Theorem for quasi-unipotent matrices Thomas Koberda a, Feng Luo b,∗, Hongbin Sun b a Department of Mathematics, University of Virginia, Charlottesville, VA 22904-4137, USA b Department of Mathematics, Rutgers University, Hill Center – Busch Campus, 110 Frelinghuysen Road, Piscataway, NJ 08854, USA a r t i c l e i n f oa b s t r a c t Article history: We establish an effective version of the classical Lie–Kolchin Received 27 April 2019 Theorem. Namely, let A, B ∈ GLm(C)be quasi-unipotent Accepted 17 July 2019 matrices such that the Jordan Canonical Form of B consists Available online 23 July 2019 of a single block, and suppose that for all k 0the Submitted by V.V. Sergeichuk matrix ABk is also quasi-unipotent. Then A and B have a A, B < C MSC: common eigenvector. In particular, GLm( )is a primary 20H20, 20F38 solvable subgroup. We give applications of this result to the secondary 20F16, 15A15 representation theory of mapping class groups of orientable surfaces. Keywords: © 2019 Elsevier Inc. All rights reserved. Lie–Kolchin theorem Unipotent matrices Solvable groups Mapping class groups * Corresponding author. E-mail addresses: [email protected] (T. Koberda), fl[email protected] (F. Luo), [email protected] (H. Sun). URLs: http://faculty.virginia.edu/Koberda/ (T. Koberda), http://sites.math.rutgers.edu/~fluo/ (F. Luo), http://sites.math.rutgers.edu/~hs735/ (H.
    [Show full text]
  • Package 'Matrixcalc'
    Package ‘matrixcalc’ July 28, 2021 Version 1.0-5 Date 2021-07-27 Title Collection of Functions for Matrix Calculations Author Frederick Novomestky <[email protected]> Maintainer S. Thomas Kelly <[email protected]> Depends R (>= 2.0.1) Description A collection of functions to support matrix calculations for probability, econometric and numerical analysis. There are additional functions that are comparable to APL functions which are useful for actuarial models such as pension mathematics. This package is used for teaching and research purposes at the Department of Finance and Risk Engineering, New York University, Polytechnic Institute, Brooklyn, NY 11201. Horn, R.A. (1990) Matrix Analysis. ISBN 978-0521386326. Lancaster, P. (1969) Theory of Matrices. ISBN 978-0124355507. Lay, D.C. (1995) Linear Algebra: And Its Applications. ISBN 978-0201845563. License GPL (>= 2) Repository CRAN Date/Publication 2021-07-28 08:00:02 UTC NeedsCompilation no R topics documented: commutation.matrix . .3 creation.matrix . .4 D.matrix . .5 direct.prod . .6 direct.sum . .7 duplication.matrix . .8 E.matrices . .9 elimination.matrix . 10 entrywise.norm . 11 1 2 R topics documented: fibonacci.matrix . 12 frobenius.matrix . 13 frobenius.norm . 14 frobenius.prod . 15 H.matrices . 17 hadamard.prod . 18 hankel.matrix . 19 hilbert.matrix . 20 hilbert.schmidt.norm . 21 inf.norm . 22 is.diagonal.matrix . 23 is.idempotent.matrix . 24 is.indefinite . 25 is.negative.definite . 26 is.negative.semi.definite . 28 is.non.singular.matrix . 29 is.positive.definite . 31 is.positive.semi.definite . 32 is.singular.matrix . 34 is.skew.symmetric.matrix . 35 is.square.matrix . 36 is.symmetric.matrix .
    [Show full text]
  • R for Statistics: First Steps
    R for statistics: first steps CAR meeting, Raleigh, Feb 26 2011 Peter Aldhous, San Francisco Bureau Chief [email protected] A note of caution before using any stats package: Beware running with scissors! You can bamboozle yourself, and your readers, by misusing statistics. Make sure you understand the methods you are using, in particular the assumptions that must be met for them to be valid (e.g. normal distribution for many common tests). So before rushing in, consult: • IRE tipsheets (e.g. Donald & LaFleur, #2752; Donald & Hacker, #2731) • Statistical textbooks (e.g. http://www.statsoft.com/textbook/ is free online) • Experts who can provide a reality check on your analysis! Getting started: Download R, instructions at: http://www.r-project.org/ Start the program: Prepare the data: 1) Save as a csv file 2) Point R at the data First steps in the R command line: Load and examine the data: View a basic summary: What is the mean age and salary for CEOs in each sector? An alternative, computing mean and standard deviation in one go: Is there a correlation between age and salary? Draw a graph to explore the correlation analysis: Does mean CEO age differ significantly across sectors? Does mean CEO salary differ significantly across sectors? Draw a graph to explore the distribution of salary by sector: Moving beyond the basic functions: R packages The R community has written 2800+ extensions to R’s basic statistical and graphical functions, available from the CRAN repository: http://cran.r-project.org/web/packages/ Follow the links to find a PDF Reference Manual for each package.
    [Show full text]