Tridiagonal matrix algorithm
Variant of Gaussian elimination for solving tridiagonal systems of equations
In numerical linear algebra, the tridiagonal matrix algorithm, also known as the Thomas algorithm (named after Llewellyn Thomas), is a simplified form of Gaussian elimination that can be used to solve tridiagonal systems of equations. A tridiagonal system for n unknowns may be written as a i x i − 1 + b i x i + c i x i + 1 = d i , {\displaystyle a_{i}x_{i-1}+b_{i}x_{i}+c_{i}x_{i+1}=d_{i},} where a 1 = 0 {\displaystyle a_{1}=0} and c n = 0 {\displaystyle c_{n}=0} . [ b 1 c 1 0 a 2 b 2 c 2 a 3 b 3 ⋱ ⋱ ⋱ c n − 1 0 a n b n ] [ x 1 x 2 x 3 ⋮ x n ] =...
Nº Q1819156 ★★
Uncommon · Knowledge
Tridiagonal matrix algorithm
Variant of Gaussian elimination for solving tridiagonal systems of equations
In numerical linear algebra, the tridiagonal matrix algorithm, also known as the Thomas algorithm (named after Llewellyn Thomas), is a simplified form of Gaussian elimination that can be used to solve tridiagonal systems of equations. A tridiagonal system for n unknowns may be written as a i x i − 1 + b i x i + c i x i + 1 = d i , {\displaystyle a_{i}x_{i-1}+b_{i}x_{i}+c_{i}x_{i+1}=d_{i},} where a 1 = 0 {\displaystyle a_{1}=0} and c n = 0 {\displaystyle c_{n}=0} . [ b 1 c 1 0 a 2 b 2 c 2 a 3 b 3 ⋱ ⋱ ⋱ c n − 1 0 a n b n ] [ x 1 x 2 x 3 ⋮ x n ] =...
Last price
—
Floor price
—
7-day median
—
30-day sales
0
30-day range
—
In circulation
0
Price history
median
low – high
sales
No sales in this period
Show table
| Date | median | Low | High | sales |
|---|
Sales history
- Last sale
- —
- 30-day average
- —
- 30-day low
- —
- 30-day high
- —
- Sales 7d
- 0
- Sales 30d
- 0
No sales yet.
Anonymous sales: no buyer or seller shown. Figures count player-to-player sales only.
From Wikipedia
In numerical linear algebra, the tridiagonal matrix algorithm, also known as the Thomas algorithm (named after Llewellyn Thomas), is a simplified form of Gaussian elimination that can be used to solve tridiagonal systems of equations. A tridiagonal system for n unknowns may be written as a i x i − 1 + b i x i + c i x i + 1 = d i , {\displaystyle a_{i}x_{i-1}+b_{i}x_{i}+c_{i}x_{i+1}=d_{i},} where a 1 = 0 {\displaystyle a_{1}=0} and c n = 0 {\displaystyle c_{n}=0} . [ b 1 c 1 0 a 2 b 2 c 2 a 3 b 3 ⋱ ⋱ ⋱ c n − 1 0 a n b n ] [ x 1 x 2 x 3 ⋮ x n ] = [ d 1 d 2 d 3 ⋮ d n ] . {\displaystyle {\begin{bmatrix}b_{1}&c_{1}&&&0\\a_{2}&b_{2}&c_{2}&&\\&a_{3}&b_{3}&\ddots &\\&&\ddots &\ddots &c_{n-1}\\0&&&a_{n}&b_{n}\end{bmatrix}}{\begin{bmatrix}x_{1}\\x_{2}\\x_{3}\\\vdots \\x_{n}\end{bmatrix}}={\begin{bmatrix}d_{1}\\d_{2}\\d_{3}\\\vdots \\d_{n}\end{bmatrix}}.} For such systems, the solution can be obtained in O ( n ) {\displaystyle O(n)} operations instead of O ( n 3 ) {\displaystyle O(n^{3})} required by Gaussian elimination. A first sweep eliminates the a i {\displaystyle a_{i}} 's, and then an (abbreviated) backward substitution produces the solution. Examples of such matrices commonly arise from the discretization of 1D Poisson equation and natural cubic spline interpolation. Thomas' algorithm is not stable in general, but is so in several special cases, such as when the matrix is diagonally dominant (either by rows or columns) or symmetric positive definite; for a more precise characterization of stability of Thomas' algorithm, see Higham Theorem 9.12. If stability is required in the general case, Gaussian elimination with partial pivoting (GEPP) is recommended instead.
Text: Wikipédia, CC BY-SA 4.0. ·
Related cards
Simplex algorithm
Algorithm
Nº Q134164 ★★★
Ramer–Douglas–Peucker algorithm
Line simplification algorithm
Nº Q1251950 ★★★
Minimax
Decision rule used for minimizing the possible loss for a worst case scenario
Nº Q751319 ★★★
Algebraic number theory
Major branch of number theory
Nº Q613048 ★★
Picard–Lindelöf theorem
Theorem on existence and uniqueness of solutions to first-order equations with given initial conditions
Nº Q530152 ★★
Master theorem (analysis of algorithms)
Method for analysis of algorithms
Nº Q922367 ★★