Skip to main content

Questions tagged [tridiagonal-matrices]

A tridiagonal matrix is a band matrix that has nonzero elements only on the main diagonal, the first diagonal below this, and the first diagonal above the main diagonal.

Filter by
Sorted by
Tagged with
2 votes
0 answers
103 views

During my research, I encountered a problem involving symmetric tridiagonal matrices and their eigenvectors, which I have been attempting to solve since then. So far, I have only managed to obtain a ...
ortofoxy's user avatar
1 vote
1 answer
277 views

The tridiagonal Toeplitz matrices $$\begin{pmatrix} a & b & & \\ c & \ddots & \ddots \\ & \ddots & \ddots & b \\ & & c ...
Oliver Bukovianský's user avatar
2 votes
0 answers
114 views

I'm considering the $n \times n$ tridiagonal matrix $$ A = \begin{pmatrix} 0 & 1 & & & \\ 1 & c & 1 & & \\ ...
mik's user avatar
  • 21
0 votes
1 answer
139 views

When reading the following paper: Ed S. Coakley, Vladimir Rokhlin, A fast divide-and-conquer algorithm for computing the spectra of real symmetric tridiagonal matrices, Applied and Computational ...
William Casper's user avatar
2 votes
1 answer
262 views

I begin with an $n \times n$ real symmetric tridiagonal matrix. However, I replace the non-zero elements in the first and last rows with zeros, so it is no longer symmetric $$M = \begin{bmatrix} 0 &...
Peter A's user avatar
  • 141
3 votes
2 answers
483 views

The question is the following: given a matrix $$A=\begin{pmatrix} 1& 2 & & & & \\ 1& 0& 1 & & & \\ & 1& 0& 1 & &\\ & &...
Connor's user avatar
  • 145
1 vote
0 answers
175 views

Say we have a block tridiagonal matrix, $T \in \mathbb{R}^{NL \times NL}$, with constant off diagonals, $\mathbf{B} \in \mathbb{R}^{L\times L}$, given by $$ T = \begin{bmatrix} \mathbf{A}_1 & \...
matthewd49's user avatar
3 votes
0 answers
709 views

Is there an efficient way to diagonalize a block tridiagonal $N\times N$ matrix of the following form: \begin{matrix} A_0 & B & 0 & 0 & \ldots \\ B & A_1 & B & 0 & \...
Ritteraxt's user avatar
0 votes
0 answers
209 views

I was numerically playing with tridiagonal symmetric matrix (zero on diagonal) of the form \begin{pmatrix} 0 & b_1 & 0 & 0 & 0 & \ldots & 0 \\ b_1 & 0 & b_2 & 0 &...
weatherman's user avatar
4 votes
0 answers
388 views

Originally posted on Math SE but didn't get any responses. Thus, I thought I would ask here with some more details. I have a matrix originating from Master Equation for birth death process on semi ...
plambda's user avatar
  • 41
3 votes
1 answer
502 views

Suppose $\mathbf{A}(\mu)$ being a symmetric positive definite matrix of dimension $n$ where its elements depend parametrically on the real parameter $\mu$. Suppose now to build the orthonormal basis ...
wolfram's user avatar
  • 131
5 votes
2 answers
1k views

Let $M_n \in \mathbb{R}^{N \times N}$ be a block-tridiagonal matrix: $$M_n = \begin{bmatrix} B_1 & C_1 & 0 & 0 & \cdots & 0 \\ A_1 & B_2 & C_2 & 0 & \cdots & 0 \...
kaba's user avatar
  • 397
5 votes
0 answers
180 views

A relatively well-known example of (continuous) Schrödinger operator with empty spectrum is the complex Airy operator on the line, i.e., the operator acting on $L^{2}(\mathbb{R})$ given by the ...
Twi's user avatar
  • 2,208
1 vote
0 answers
544 views

Is there a simple analytical solution to obtain eigenvalues (and eigenvectors) for this type of tridiagonal matrices ? ( Off diagonal elements are identical and the matrix is symmetric) $$ \begin{...
Stef1611's user avatar
  • 111
3 votes
1 answer
2k views

Let $\mathbf M_i$ be rectangular matrices of dimensions $N_{i-1}\times N_i$. We assume that their entries are random, with zero mean and variance $\sigma_i^2$. For some positive integer $k$, I define ...
valle's user avatar
  • 924
2 votes
2 answers
348 views

I have tried to compute the eigenvalues of random matrices of the GOE ensemble, using MATLAB. Such matrices of size $n * n $ can be obtained easily, symmetrizing matrices whose elements follow the ...
Clej's user avatar
  • 153
2 votes
1 answer
656 views

Let $A \in \mathbb{R}^{n \times n}$ be a bidiagonal matrix with non zero elements on its diagonal and super diagonal. Let $B$ be defined as $$B=\begin{bmatrix}0&{A} \\{A}^T &0 \end{bmatrix}$$....
Prashant Govindarajan's user avatar
1 vote
1 answer
321 views

Assume nonsymmetric, tridiagonal matrices $A, B \in \mathbb{R}^{n\times n}$ (where $n$ is in the order of 1000) and $A, B, AB$ are diagonalizable and have positive eigenvalues. How do you efficiently ...
jack's user avatar
  • 213
1 vote
1 answer
372 views

Show that if $T$ is a symmetric tridiagonal matrix and an eigenvalue $\lambda$ has multiplicity $k$, then at least $k−1$ subdiagonal elements of $T$ are zero. If we consider a submatrix $B$ that has ...
Prashant Govindarajan's user avatar
2 votes
0 answers
413 views

I am studying a real symmetric tridiagonal matrix $J_{N+1}$ (all off-diagonal elements non-zero) of dimension $N+1$, and I would like to solve the eigenvalue problem. The point is that the ...
Kris's user avatar
  • 135
2 votes
1 answer
628 views

Suppose I have a symmetric tridiagonal (Jacobi) matrix in the following form: $ \begin{pmatrix} 1 & a_{1} & 0 & ... & 0 \\\ a_{1} & 1 & a_{2} & & ... \\\ 0 & a_{...
Taha's user avatar
  • 137
1 vote
1 answer
2k views

I wonder if someone can prove/disprove the following inequality, $\lambda_i(A+mI) \leq \lambda_i(A+K) \leq \lambda_i(A+MI)$ where $A$ is a real symmetric Metzler matrix with real and nonpositive ...
Mohammad's user avatar
5 votes
1 answer
8k views

What can I say about the eigenvalues and eigenvectors of the tridiagonal matrix $T$ given as $T = \begin{pmatrix} a_1 & b_1 \\ c_1 & a_2 & b_2 \\ & c_2 & \ddots & \ddots \\ &...
Guilherme's user avatar
11 votes
2 answers
524 views

This question was originally posted on Mathematics SE, and I'm cross posting it here. Define an infinite matrix $$ M = \begin{bmatrix} 0 & -1 & 0 & 0 & \cdots \\ 1 & 0 & -2 &...
Yly's user avatar
  • 996
8 votes
1 answer
2k views

Is there a way to compute one matrix element of the exponential of a tridiagonal matrix without having to compute the rest of the elements? Motivation: I'm trying to find the first passage time ...
stochastic's user avatar
7 votes
1 answer
3k views

Are there special methods to get exact eigenvalues of a tridiagonal matrix?
Abdelhak Hafdallah's user avatar
3 votes
0 answers
236 views

I wonder if it is possible to find analytically all eigenvalues and eigenvectors of the following $2n \times 2n$ non-symmetric complex tridiagonal matrix $$M = i \begin{pmatrix} 0 & a & 0 &...
V. M. Martinez Alvarez's user avatar
8 votes
0 answers
662 views

It's well-known that the eigenvalues of the Clement-Kac-Sylvester tridiagonal matrix $$\begin{pmatrix} 0 & n-1 & 0 & \dots & 0 \\\ 1 & 0 & n-2 & \dots & 0\\\ 0 & ...
Sihuang Hu's user avatar
11 votes
1 answer
1k views

I'm studying the following tri-diagonal matrix $$ X = \begin{pmatrix} 0 & x_0 & 0 & 0 &\cdots & 0 & 0 & 0 \\\ x_0 & 0 & x_1 & 0 &\cdots & 0 & ...
Kasper's user avatar
  • 171
4 votes
1 answer
561 views

Consider large tridiagonal matrix (where $a$ and $b$ are real numbers): $$M = \begin{pmatrix} a^2 & b & 0 & 0 & \cdots \\ b & (a+1)^2 & b & 0 & \cdots & \\ ...
Nigel1's user avatar
  • 285
1 vote
2 answers
1k views

I have a symmetric positive definite matrix $A$ defined by $$ a_{ij} = \begin{cases} 2 & \text{if} & i = j \\ -1 & \text{if} & |i - j| = 1 \\ 0 & \text{if} & \text{otherwise} ...
codepk's user avatar
  • 121
3 votes
2 answers
1k views

is it possible to analytically evaluate the eigenvectors and the eigenvalues of a tridiagonal $n\times n$ matrix of the form : \begin{pmatrix} 1 & b & 0 & ... & 0 \\\ b & 2 &...
ram's user avatar
  • 31
22 votes
6 answers
45k views

Suppose I have the symmetric tridiagonal matrix: $$ \begin{pmatrix} a & b_{1} & 0 & ... & 0 \\\ b_{1} & a & b_{2} & \ddots & \vdots \\\ 0 & b_{2} & a & \...
FlamingWilderbeest's user avatar
15 votes
4 answers
7k views

Is it possible to analytically evaluate the eigenvectors and eigenvalues of the following $n \times n$ tridiagonal matrix $$ \mathcal{T}^{a}_n(p,q) = \begin{pmatrix} 0 & q & 0 & 0 &...
user22127's user avatar
  • 153
6 votes
1 answer
863 views

What is the most efficient way to calculate the dominant eigenvector of a real symmetric tridiagonal matrix? What's the corresponding time complexity bound? Could someone give me a reference for ...
tom's user avatar
  • 61