A Fast Eigenvalue Algorithm for Hankel Matricesୋ Franklin T

Total Page:16

File Type:pdf, Size:1020Kb

A Fast Eigenvalue Algorithm for Hankel Matricesୋ Franklin T Linear Algebra and its Applications 316 (2000) 171–182 www.elsevier.com/locate/laa A fast eigenvalue algorithm for Hankel matricesୋ Franklin T. Luk a,∗, Sanzheng Qiao b aDepartment of Computer Science, Rensselaer Polytechnic Institute, Troy, NY 12180, USA bDepartment of Computing and Software, McMaster University, Hamilton, Ont., Canada L8S 4K1 Received 12 March 1999; accepted 18 February 2000 Dedicated to Robert J. Plemmons on the occasion of his 60th birthday Submitted by J. Nagy Abstract We present an algorithm that can find all the eigenvalues of an n × n complex Hankel matrix in O(n2 log n) operations. Our scheme consists of an O(n2 log n) Lanczos-type tri- diagonalization procedure and an O(n) QR-type diagonalization method. © 2000 Elsevier Science Inc. All rights reserved. Keywords: Hankel matrix; Toeplitz matrix; Circulant matrix; Fast Fourier transform; Lanczos tridiago- nalization; Eigenvalue decomposition; Complex-symmetric matrix; Complex-orthogonal transformations 1. Introduction The eigenvalue decomposition of a structured matrix has important applications in signal processing. Common occurring structures include an n × n Hankel matrix h1 h2 ... hn−1 hn h h ... h h 2 3 n n+1 . H = . .. (1) hn−1 hn ... h2n−3 h2n−2 hn hn+1 ... h2n−2 h2n−1 ୋ This work was partly supported by the Natural Sciences and Engineering Research Council of Canada under grant OGP0046301. ∗ Corresponding author. E-mail address: [email protected] (F.T. Luk). 0024-3795/00/$ - see front matter ( 2000 Elsevier Science Inc. All rights reserved. PII:S0024-3795(00)00084-7 172 F.T. Luk, S. Qiao / Linear Algebra and its Applications 316 (2000) 171–182 or an n × n Toeplitz matrix tn tn−1 ... t2 t1 t t ... t t n+1 n 3 2 . T = . .. . (2) t2n−2 t2n−3 ... tn tn−1 t2n−1 t2n−2 ... tn+1 tn There is extensive literature on inverting such matrices or solving such linear sys- tems. However, efficient eigenvalue algorithms for structured matrices are still un- der development. Cybenko and Van Loan [3] proposed an algorithm for computing the minimum eigenvalue of a symmetric positive definite Toeplitz matrix. Their algorithm is based on the Levinson–Durbin Algorithm and Newton’s method; it requires up to O(n2) floating-point operations per Newton iteration and heuristically O(log n) iterations. Building on their work [3], Trench [8] presented an algorithm for Hermitian Toeplitz matrices. His algorithm requires O(n2) operations per eigen- value–eigenvector pair. In this paper, we study the eigenvalue problem of a Hankel matrix. Taking advantage of two properties, namely that a complex Hankel matrix is symmetric and that a permuted Hankel matrix can be embedded in a circulant matrix, we develop an O(n2 log n) algorithm that can find all the eigenvalues of an n × n Hankel matrix. We should point out that our new method is a theoretical contribution; considerable work is required to develop a practical software. An error analysis of this algorithm can be found in [6]. Our paper is organized as follows. How to exploit complex-symmetry is presented in Section 2, and how to construct complex-orthogonal transformations in Section 3. An O(n log n) scheme for multiplying a Hankel matrix and a vector is described in Section 4, and an O(n2 log n) Lanczos tridiagonalization process in Section 5. A QR procedure to diagonalize a complex-symmetric tridiagonal matrix is given in Section 6, followed by an overall computational procedure and two numerical examples in Section 7. 2. Complex symmetry Our idea is to take advantage of the symmetry of a Hankel matrix. In general, an eigenvalue decomposition of H (assuming that it is nondefective) is given by − H = XDX 1, (3) where D is diagonal and X is nonsingular. Note that the following Hankel matrix is defective: H = 2i. i0 We will pick the matrix X to be complex-orthogonal;thatis, XXT = I. (4) F.T. Luk, S. Qiao / Linear Algebra and its Applications 316 (2000) 171–182 173 So, H = XDXT. We apply a special Lanczos tridiagonalization to the Hankel matrix (assuming that the Lanczos process does not prematurely terminate) H = QJ QT, (5) where Q is complex-orthogonal and J is complex-symmetric tridiagonal. Then we diagonalize J: J = WDWT, where W is complex-orthogonal and D is diagonal. Thus, we get (3) with X = QW. The dominant cost of the Lanczos method is matrix–vector multiplication which in general takes O(n2) operations. We propose a fast O(n log n) Hankel matrix–vector multiplication algorithm. Thus we can tridiagonalize a Hankel matrix in O(n2 log n) operations. The resulting tridiagonal matrix is complex-symmetric. In order to main- tain its symmetric and tridiagonal structure, we use the complex-orthogonal trans- formations in the QR iteration. 3. Complex-orthogonal transformations A basic operation in solving eigenvalue problems is the introduction of zeros into 2 × 1 vectors using 2 × 2 transformations. From its definition in (4), we derive the general form of a 2 × 2 complex-orthogonal matrix as cs cs G = , −sc or s −c where c2 + s2 = 1. Here, we choose the nonsymmetric version cs G = . −sc (6) In the real case, the transformation G of (6) reduces to a Givens rotation. Given a complex 2-element vector x x = 1 , (7) x2 x2 + x2 =/ where 1 2 0, the following algorithm computes the nonsymmetric transfor- mation G of (6) so that q x2 + x2 Gx = 1 2 . (8) 0 For more details, see [5,10]. 174 F.T. Luk, S. Qiao / Linear Algebra and its Applications 316 (2000) 171–182 Algorithm 1 (Complex-orthogonaltransformation). Given a complex vector x of (7), this algorithm computes the parameters c and s for the complex-orthogonal transfor- mation G of (6), so that (8) holds if (|x1| > |x2|) √ 2 t = x2/x1; c = 1/ 1 + t ; s = t · c; else √ 2 τ = x1/x2; s = 1/ 1 + τ ; c = τ · s; end if. This algorithm will be used in the complex-orthogonal diagonalization in Section 6. 4. Fast Hankel matrix–vector product In this section, we describe an O(n log n) algorithm for multiplying an n × n Hankel matrix into an n-element vector. We begin with some additional notations. Let T h ≡ (h1 h2 h3 ... h2n−1 ) and T t ≡ (t1 t2 t3 ... t2n−1 ) denote two (2n − 1)-element vectors specifying the n × n Hankel matrix H(h) and the n × n Toeplitz matrix T(t) of Eqs. (1) and (2), respectively. First, we permute a Hankel matrix into a Toeplitz matrix. Let P represent an n × n permutation matrix that reverses all columns of H in postmultiplication: 00... 01 ... 00 10 . P = . .. ; 01... 00 10... 00 that is, H(h) P = T(h). (9) The simplicity of Eq. (9) explains why we start with H11 (respectively T1n)whenwe define the vector h (respectively t). Next, we embed the Toeplitz matrix T(h) in a larger circulant matrix. Consider a (2n − 1) × (2n − 1) circulant matrix F.T. Luk, S. Qiao / Linear Algebra and its Applications 316 (2000) 171–182 175 c1 c2n−1 c2n−2 ... c3 c2 c c c ... c c 2 1 2n−1 4 3 c c c ... c c 3 2 1 5 4 C = . ≡ C(c), . .. c2n−2 c2n−3 c2n−4 ... c1 c2n−1 c2n−1 c2n−2 c2n−3 ... c2 c1 where T c ≡ (c1 c2 c3 ... c2n−1 ) . Note that c represents the first column of C. Consider a special choice of this vector T bc = (hn hn+1 hn+2 ... h2n−1 h1 h2 ... hn−1 ) . (10) Then hn hn−1 hn−2 ... h1 h2n−1 h2n−2 ... hn+1 h h h ... h h h ... h n+1 n n−1 2 1 2n−1 n+2 h h h ... h h h ... h n+2 n+1 n 3 2 1 n+3 . . .. .. C(b)= h h h ... h h h ... h , c 2n−1 2n−2 2n−3 n n−1 n−2 1 h h h ... h h h ... h 1 2n−1 2n−2 n+1 n n−1 2 h h h ... h h h ... h 2 1 2n−1 n+2 n+1 n 3 . . .. .. hn−1 hn−2 hn−3 ... h2n−1 h2n−2 h2n−3 ... hn where the leading n × n principal submatrix is T(h). This technique of embedding a Toeplitz matrix in a larger circulant matrix to achieve fast computation is widely used in preconditioning methods [1,7]. Given an n-element vector T w = (w1 w2 w3 ... wn ) , (11) we want to compute the matrix–vector product p = H w. (12) We see that p = H(h)w = T(h)(Pw). Let bw denote a special (2n − 1)-element vector: T bw = (wn wn−1 ... w1 0 ... 0 ) , (13) which can be obtained from the n-vector Pw by appending it with n − 1 zeros. So p is given by the first n elements of the product y,definedby y ≡ C(bc )bw. This circulant matrix–vector multiplication can be efficiently computed via the Fast Fourier Transform (FFT) [9]; namely, 176 F.T. Luk, S. Qiao / Linear Algebra and its Applications 316 (2000) 171–182 C(bc )bw = ifft(fft(bc ).∗ fft(bw)), where fft(v) denotes a one-dimensional FFT of a vector v,ifft(v) a one-dimensional inverse FFT of v,and“.∗” a componentwise multiplication of two vectors. Algorithm 2 (Fast Hankel matrix–vector product). Given a vector w in (11) and a Hankel matrix H in (1), this algorithm computes the product vector p of (12) by using FFT.
Recommended publications
  • Polynomials and Hankel Matrices
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector Polynomials and Hankel Matrices Miroslav Fiedler Czechoslovak Academy of Sciences Institute of Mathematics iitnci 25 115 67 Praha 1, Czechoslovakia Submitted by V. Ptak ABSTRACT Compatibility of a Hankel n X n matrix W and a polynomial f of degree m, m < n, is defined. If m = n, compatibility means that HC’ = CfH where Cf is the companion matrix of f With a suitable generalization of Cr, this theorem is gener- alized to the case that m < n. INTRODUCTION By a Hankel matrix [S] we shall mean a square complex matrix which has, if of order n, the form ( ai +k), i, k = 0,. , n - 1. If H = (~y~+~) is a singular n X n Hankel matrix, the H-polynomial (Pi of H was defined 131 as the greatest common divisor of the determinants of all (r + 1) x (r + 1) submatrices~of the matrix where r is the rank of H. In other words, (Pi is that polynomial for which the nX(n+l)matrix I, 0 0 0 %fb) 0 i 0 0 0 1 LINEAR ALGEBRA AND ITS APPLICATIONS 66:235-248(1985) 235 ‘F’Elsevier Science Publishing Co., Inc., 1985 52 Vanderbilt Ave., New York, NY 10017 0024.3795/85/$3.30 236 MIROSLAV FIEDLER is the Smith normal form [6] of H,. It has also been shown [3] that qN is a (nonzero) polynomial of degree at most T. It is known [4] that to a nonsingular n X n Hankel matrix H = ((Y~+~)a linear pencil of polynomials of degree at most n can be assigned as follows: f(x) = fo + f,x + .
    [Show full text]
  • Inverse Problems for Hankel and Toeplitz Matrices
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector Inverse Problems for Hankel and Toeplitz Matrices Georg Heinig Vniversitiit Leipzig Sektion Mathematik Leipzig 7010, Germany Submitted by Peter Lancaster ABSTRACT The problem is considered how to construct a Toeplitz or Hankel matrix A from one or two equations of the form Au = g. The general solution is described explicitly. Special cases are inverse spectral problems for Hankel and Toeplitz matrices and problems from the theory of orthogonal polynomials. INTRODUCTION When we speak of inverse problems we have in mind the following type of problems: Given vectors uj E C”, gj E C”’ (j = l,.. .,T), we ask for an m x n matrix A of a certain matrix class such that Auj = gj (j=l,...,?-). (0.1) In the present paper we deal with inverse problems with the additional condition that A is a Hankel matrix [ si +j] or a Toeplitz matrix [ ci _j]. Inverse problems for Hankel and Toeplitz matices occur, for example, in the theory of orthogonal polynomials when a measure p on the real line or the unit circle is wanted such that given polynomials are orthogonal with respect to this measure. The moment matrix of p is just the solution of a certain inverse problem and is Hankel (in the real line case) or Toeplitz (in the unit circle case); here the gj are unit vectors. LINEAR ALGEBRA AND ITS APPLICATIONS 165:1-23 (1992) 1 0 Elsevier Science Publishing Co., Inc., 1992 655 Avenue of tbe Americas, New York, NY 10010 0024-3795/92/$5.00 2 GEORG HEINIG Inverse problems for Toeplitz matrices were considered for the first time in the paper [lo]of M.
    [Show full text]
  • Hankel Matrix Rank Minimization with Applications to System Identification and Realization ∗
    HANKEL MATRIX RANK MINIMIZATION WITH APPLICATIONS TO SYSTEM IDENTIFICATION AND REALIZATION ∗ y z x { MARYAM FAZEL , TING KEI PONG , DEFENG SUN , AND PAUL TSENG In honor of Professor Paul Tseng, who went missing while on a kayak trip on the Jinsha river, China, on August 13, 2009, for his contributions to the theory and algorithms for large-scale optimization. Abstract. In this paper, we introduce a flexible optimization framework for nuclear norm minimization of matrices with linear structure, including Hankel, Toeplitz and moment structures, and catalog applications from diverse fields under this framework. We discuss various first-order methods for solving the resulting optimization problem, including alternating direction methods, proximal point algorithm and gradient projection methods. We perform computational experiments to compare these methods on system identification problem and system realization problem. For the system identification problem, the gradient projection method (accelerated by Nesterov's extrapola- tion techniques) and the proximal point algorithm usually outperform other first-order methods in terms of CPU time on both real and simulated data, for small and large regularization parameters respectively; while for the system realization problem, the alternating direction method, as applied to a certain primal reformulation, usually outperforms other first-order methods in terms of CPU time. Key words. Rank minimization, nuclear norm, Hankel matrix, first-order method, system identification, system realization 1. Introduction. The matrix rank minimization problem, or minimizing the rank of a matrix subject to convex constraints, has recently attracted much renewed interest. This problem arises in many engineering and statistical modeling application- s, where notions of order, dimensionality, or complexity of a model can be expressed by the rank of an appropriate matrix.
    [Show full text]
  • Exponential Decomposition and Hankel Matrix
    Exponential Decomposition and Hankel Matrix Franklin T. Luk Department of Computer Science and Engineering, Chinese University of Hong Kong, Shatin, NT, Hong Kong. [email protected] Sanzheng Qiao Department of Computing and Software, McMaster University, Hamilton, Ontario L8S 4L7 Canada. [email protected] David Vandevoorde Edison Design Group, Belmont, CA 94002-3112 USA. [email protected] 1 Introduction We consider an important problem in mathematical modeling: Exponential Decomposition. Given a finite sequence of signal values {s1,s2,...,sn}, determine a minimal positive integer r, complex coefficients {c1,c2,...,cr}, and distinct complex knots {z1,z2,...,zr}, so that the following exponential decomposition signal model is satisfied: r − s = c zk 1, for k =1,...,n. (1.1) k X i i i=1 We usually solve the above problem in three steps. First, determine the rank r of the signal sequence. Second, find the knots zi. Third, calculate the coefficients {ci} by solving an r × r Vandermonde system: W (r)c = s(r), (1.2) where 1 1 · · · 1 c1 s1 z1 z2 · · · zr c2 s2 (r) (r) W = . , c = . and s = . . . .. . . r−1 r−1 r−1 z1 z2 · · · zr cr sr A square Vandermonde system (1.2) can be solved efficiently and stably (see [1]). 275 276 Exponential Decomposition and Hankel Matrix There are two well known methods for solving our problem, namely, Prony [8] and Kung [6]. Vandevoorde [9] presented a single matrix pencil based framework that includes [8] and [6] as special cases. By adapting an implicit Lanczos pro- cess in our matrix pencil framework, we present an exponential decomposition algorithm which requires only O(n2) operations and O(n) storage, compared to O(n3) operations and O(n2) storage required by previous methods.
    [Show full text]
  • Analysis of a Fast Hankel Eigenvalue Algorithm
    Analysis of a Fast Hankel Eigenvalue Algorithm a b Franklin T Luk and Sanzheng Qiao a Department of Computer Science Rensselaer Polytechnic Institute Troy New York USA b Department of Computing and Software McMaster University Hamilton Ontario LS L Canada ABSTRACT This pap er analyzes the imp ortant steps of an O n log n algorithm for nding the eigenvalues of a complex Hankel matrix The three key steps are a Lanczostype tridiagonalization algorithm a fast FFTbased Hankel matrixvector pro duct pro cedure and a QR eigenvalue metho d based on complexorthogonal transformations In this pap er we present an error analysis of the three steps as well as results from numerical exp eriments Keywords Hankel matrix eigenvalue decomp osition Lanczos tridiagonalization Hankel matrixvector multipli cation complexorthogonal transformations error analysis INTRODUCTION The eigenvalue decomp osition of a structured matrix has imp ortant applications in signal pro cessing In this pap er nn we consider a complex Hankel matrix H C h h h h n n h h h h B C n n B C B C H B C A h h h h n n n n h h h h n n n n The authors prop osed a fast algorithm for nding the eigenvalues of H The key step is a fast Lanczos tridiago nalization algorithm which employs a fast Hankel matrixvector multiplication based on the Fast Fourier transform FFT Then the algorithm p erforms a QRlike pro cedure using the complexorthogonal transformations in the di agonalization to nd the eigenvalues In this pap er we present an error analysis and discuss
    [Show full text]
  • Paperfolding and Catalan Numbers Roland Bacher
    Paperfolding and Catalan numbers Roland Bacher To cite this version: Roland Bacher. Paperfolding and Catalan numbers. 2004. hal-00002104 HAL Id: hal-00002104 https://hal.archives-ouvertes.fr/hal-00002104 Preprint submitted on 17 Jun 2004 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. Paperfolding and Catalan numbers Roland Bacher June 17, 2004 Abstract1: This paper reproves a few results concerning paperfolding sequences using properties of Catalan numbers modulo 2. The guiding prin- ciple can be described by: Paperfolding = Catalan modulo 2 + signs given by 2−automatic sequences. 1 Main results In this paper, a continued fraction is a formal expression a b + 1 = b + a b + a b + . 0 b + a2 0 1 1 2 2 1 b2+... with b0, b1,...,a1, a2,... ∈ C[x] two sequences of complex rational functions. We denote such a continued fraction by a1| a2| ak| b0 + + + . + + . |b1 |b2 |bk and call it convergent if the coefficients of the (formal) Laurent-series ex- pansions of its partial convergents P0 b0 P1 b0b1 + a1 Pk a1| a2| ak| = , = ,..., = b0 + + + . + ,... Q0 1 Q1 b1 Qk |b1 |b2 |bk k C 1 are ultimately constant.
    [Show full text]
  • Matrix Theory
    Matrix Theory Xingzhi Zhan +VEHYEXI7XYHMIW MR1EXLIQEXMGW :SPYQI %QIVMGER1EXLIQEXMGEP7SGMIX] Matrix Theory https://doi.org/10.1090//gsm/147 Matrix Theory Xingzhi Zhan Graduate Studies in Mathematics Volume 147 American Mathematical Society Providence, Rhode Island EDITORIAL COMMITTEE David Cox (Chair) Daniel S. Freed Rafe Mazzeo Gigliola Staffilani 2010 Mathematics Subject Classification. Primary 15-01, 15A18, 15A21, 15A60, 15A83, 15A99, 15B35, 05B20, 47A63. For additional information and updates on this book, visit www.ams.org/bookpages/gsm-147 Library of Congress Cataloging-in-Publication Data Zhan, Xingzhi, 1965– Matrix theory / Xingzhi Zhan. pages cm — (Graduate studies in mathematics ; volume 147) Includes bibliographical references and index. ISBN 978-0-8218-9491-0 (alk. paper) 1. Matrices. 2. Algebras, Linear. I. Title. QA188.Z43 2013 512.9434—dc23 2013001353 Copying and reprinting. Individual readers of this publication, and nonprofit libraries acting for them, are permitted to make fair use of the material, such as to copy a chapter for use in teaching or research. Permission is granted to quote brief passages from this publication in reviews, provided the customary acknowledgment of the source is given. Republication, systematic copying, or multiple reproduction of any material in this publication is permitted only under license from the American Mathematical Society. Requests for such permission should be addressed to the Acquisitions Department, American Mathematical Society, 201 Charles Street, Providence, Rhode Island 02904-2294 USA. Requests can also be made by e-mail to [email protected]. c 2013 by the American Mathematical Society. All rights reserved. The American Mathematical Society retains all rights except those granted to the United States Government.
    [Show full text]
  • Forward-Backward Hankel Matrix Fitting for Spectral Super-Resolution
    Forward-Backward Hankel Matrix Fitting for Spectral Super-Resolution Zai Yang and Xunmeng Wu School of Mathematics and Statistics, Xi’an Jiaotong University, Xi’an 710049, China [email protected] Abstract—Hankel-based approaches form an important class which eventually results in simple algorithm design [6]–[8]. of methods for line spectral estimation within the recent spec- However, this causes a fundamental limitation of Hankel- tral super-resolution framework. However, they suffer from the based methods, to be specific, the estimated poles do not fundamental limitation that their estimated signal poles do not lie on the unit circle in general, causing difficulties of physical lie on the unit circle in general, resulting in difficulties of interpretation and performance loss. In this paper, we present physical interpretation and potential performance loss (see the a modified Hankel approach called forward-backward Hankel main context). This paper aims at resolving this fundamental matrix fitting (FB-Hankel) that can be implemented by simply problem. modifying the existing algorithms. We show analytically that In this paper, by using the classic forward-backward tech- the new approach has great potential to restrict the estimated poles on the unit circle. Numerical results are provided that nique [9], we propose a modified Hankel-based approach for corroborate our analysis and demonstrate the advantage of FB- line spectral estimation, named as forward-backward Hankel Hankel in improving the estimation accuracy. 1 matrix fitting (FB-Hankel). The core of FB-Hankel is introduc- Index Terms—Forward-backward Hankel matrix fitting, line ing a (conjugated) backward Hankel matrix which is composed spectral estimation, spectral super-resolution, Vandermonde de- of the same spectral modes as and processed jointly with composition, Kronecker’s theorem.
    [Show full text]
  • A Panorama of Positivity
    A PANORAMA OF POSITIVITY ALEXANDER BELTON, DOMINIQUE GUILLOT, APOORVA KHARE, AND MIHAI PUTINAR Abstract. This survey contains a selection of topics unified by the concept of positive semi-definiteness (of matrices or kernels), reflecting natural constraints imposed on discrete data (graphs or networks) or continuous objects (probability or mass distributions). We put empha- sis on entrywise operations which preserve positivity, in a variety of guises. Techniques from harmonic analysis, function theory, operator theory, statistics, combinatorics, and group representations are invoked. Some partially forgotten classical roots in metric geometry and distance transforms are presented with comments and full bibliographical refer- ences. Modern applications to high-dimensional covariance estimation and regularization are included. Contents 1. Introduction 2 2. From metric geometry to matrix positivity 4 2.1. Distance geometry 4 2.2. Spherical distance geometry 6 2.3. Distance transforms 6 2.4. Altering Euclidean distance 8 2.5. Positive definite functions on homogeneous spaces 11 2.6. Connections to harmonic analysis 15 3. Entrywise functions preserving positivity in all dimensions 18 Date: November 13, 2019. 2010 Mathematics Subject Classification. 15-02, 26-02, 15B48, 51F99, 15B05, 05E05, arXiv:1812.05482v3 [math.CA] 12 Nov 2019 44A60, 15A24, 15A15, 15A45, 15A83, 47B35, 05C50, 30E05, 62J10. Key words and phrases. metric geometry, positive semidefinite matrix, Toeplitz ma- trix, Hankel matrix, positive definite function, completely monotone functions, absolutely monotonic functions, entrywise calculus, generalized Vandermonde matrix, Schur polyno- mials, symmetric function identities, totally positive matrices, totally non-negative matri- ces, totally positive completion problem, sample covariance, covariance estimation, hard / soft thresholding, sparsity pattern, critical exponent of a graph, chordal graph, Loewner monotonicity, convexity, and super-additivity.
    [Show full text]
  • Total Positivity of Toeplitz Matrices of Recursive Hypersequences∗
    ISSN 1855-3966 (printed edn.), ISSN 1855-3974 (electronic edn.) ARS MATHEMATICA CONTEMPORANEA 17 (2019) 125–139 https://doi.org/10.26493/1855-3974.1526.b8d (Also available at http://amc-journal.eu) Total positivity of Toeplitz matrices of recursive hypersequences∗ Tomislav Dosliˇ c´ Faculty of Civil Engineering, University of Zagreb, Zagreb, Croatia Ivica Martinjak Faculty of Science, University of Zagreb, Zagreb, Croatia Riste Skrekovskiˇ FMF, University of Ljubljana, Ljubljana, Slovenia Faculty of Information Studies, Novo Mesto, Slovenia FAMNIT, University of Primorska, Koper, Slovenia Received 9 November 2017, accepted 12 March 2019, published online 6 September 2019 Abstract We present a new class of totally positive Toeplitz matrices composed of recently in- troduced hyperfibonacci numbers of the r-th generation. As a consequence, we obtain that (r) all sequences Fn of hyperfibonacci numbers of r-th generation are log-concave for r ≥ 1 and large enough n. Keywords: Total positivity, totally positive matrix, Toeplitz matrix, Hankel matrix, hyperfibonacci sequence, log-concavity. Math. Subj. Class.: 15B36, 15A45 1 Introduction and preliminary results A matrix M is totally positive if all its minors are positive real numbers. When it is allowed that minors are zero, then M is said to be totally non-negative. Such matrices appears in many areas having numerous applications including, among other topics, graph theory, ∗Partial support of the Croatian Science Foundation through project BioAmpMode (Grant no. 8481) is grate- fully acknowledged by the first author. All authors gratefully acknowledge partial support of Croatian-Slovenian bilateral project “Modeling adsorption on nanostructures: A graph-theoretical approach” BI-HR/16-17-046.
    [Show full text]
  • Positive Definite Hankel Matrices Using Cholesky Factorization
    COMPUTATIONAL METHODS IN APPLIED MATHEMATICS, Vol.9(2009), No.3, pp.221–225 c 2009 Institute of Mathematics of the National Academy of Sciences of Belarus POSITIVE DEFINITE HANKEL MATRICES USING CHOLESKY FACTORIZATION S. AL-HOMIDAN1 AND M. ALSHAHRANI1 Abstract — Real positive definite Hankel matrices arise in many important applica- tions. They have spectral condition numbers which exponentially increase with their orders. We give a structural algorithm for finding positive definite Hankel matrices using the Cholesky factorization, compute it for orders less than or equal to 30, and compare our result with earlier results. 2000 Mathematics Subject Classification: 65F99, 99C25, 65K30. Keywords: Cholesky factorization, Hankel matrices, real positive definite matrices. 1. Introduction An n × n Hankel matrix H is one with constant antidiagonal elements. It has the following structure: h1 h2 h3 ··· ··· hn h h h ··· h h 2 3 4 n n+1 H = . .. .. .. . ··· . h h ··· ··· ··· h − n n+1 2n 1 The general complex-valued elements can be well-conditioned while real positive definite Hankel matrices are known to be very ill-conditioned since their spectral condition numbers increase exponentially with n. The condition number of a positive definite Hankel matrix is bounded below by 3 · 2(n−6) which is very large even for relatively small orders [9]. Becker- mann [6] gave a better bound γn−1/(16n) with γ ≈ 3.210. Here, we try to force the condition number of the constructed matrix to be as small as possible to reach the latter, or at least the former, experimentally. Several other authors have developed algorithms for the factorization or inversion of Hankel matrices [7, 8, 10].
    [Show full text]
  • Hankel Operators Plus Orthogonal Polynomials Yield Combinatorial Identities
    Hankel Operators plus Orthogonal Polynomials Yield Combinatorial Identities E. A. Herman, Grinnell College ∗ Abstract: A Hankel operator H = [hi+j] can be factored as H = MM , where M maps a space of L2 functions to the corresponding moment sequences. Furthermore, a necessary and sufficient condition for a sequence to be in the range of M can be expressed in terms of an expansion in orthogonal polynomials. Combining these two results yields a wealth of combinatorial identities that incorporate both the matrix entries hi+j and the coefficients of the orthogonal polynomials. 2000 Mathematics Subject Classification: 47B35, 33D45, 05A19. Keywords: Hankel operators, Hausdorff moments, orthogonal polynomials, combinatorial identities, Hilbert matrices, Legendre polynomials, Fibonacci numbers. 1. Introduction The context throughout this paper will be the Hilbert spaces l2 of square-summable se- 2 quences and Lα( 1, 1) of square-integrable functions on [ 1, 1] with the distribution dα, α nondecreasing.− Their inner products are the usual dot− product for the former and the usual integral inner product for the latter. The Hankel operators in Section 2 are exactly as in [9]. That is, we study the infinite matrices H = [hi+j]i,j≥0, where 1 j hj = x dα(x), j =0, 1, 2,... Z−1 The following result in [9] will be essential: Widom’s Theorem: The following are equivalent: (a) H represents a bounded operator on l2. (b) h = O(1/j) as j . j →∞ (c) α(1) α(x)= O(1 x) as x 1−, α(x) α( 1) = O(1 + x) as x 1+. − − → − − → − 1 In Theorem 1 we show that H = MM ∗, where M : L2 ( 1, 1) l2 is the bounded operator α − → that maps each function f L2 ( 1, 1) to its sequence of moments: ∈ α − 1 k M(f)k = x f(x) dα(x), k =0, 1, 2,..
    [Show full text]