簡化您的工作流程:搜尋 miniwebtool。
添加插件
相關工具
雅可比矩陣計算機矩陣LU分解計算機部分分式分解計算機QR分解計算機奇異值分解SVD計算機
主頁 > 數學 > 線性代數 > 喬列斯基分解計算機
 

喬列斯基分解計算機

將對稱正定矩陣分解為 A = LLᵀ,並提供動畫逐步計算過程。查看下三角矩陣 L 每個元素的完整推導公式,驗證結果,並以視覺化方式探索矩陣分解。

喬列斯基分解計算機
Examples:
Matrix Size: A: 2×2 Symmetric: A[i,j] = A[j,i]
Matrix A 2×2 (symmetric, positive-definite)
[
]
↕ Editing A[i,j] auto-mirrors to A[j,i]

Embed 喬列斯基分解計算機 Widget

喬列斯基分解計算機

The Cholesky Decomposition Calculator factors a symmetric positive-definite matrix A into the product of a lower-triangular matrix L and its transpose Lᵀ, so that A = LLᵀ. This factorization is fundamental in numerical linear algebra, offering roughly twice the efficiency of general LU decomposition by exploiting the symmetry and positive-definiteness of the input matrix. The calculator provides animated step-by-step derivations, interactive cell highlighting, and automatic verification that LLᵀ reconstructs A.

How Cholesky Decomposition Works

Given an n×n symmetric positive-definite matrix A, the algorithm computes L column by column. For each column j:

Diagonal element:

$$L_{jj} = \sqrt{A_{jj} - \sum_{k=1}^{j-1} L_{jk}^2}$$

Off-diagonal elements (for i > j):

$$L_{ij} = \frac{1}{L_{jj}} \left( A_{ij} - \sum_{k=1}^{j-1} L_{ik} L_{jk} \right)$$

The algorithm proceeds left to right across columns. Each diagonal element involves a square root, which is guaranteed to be real and positive when A is positive-definite. If a negative value appears under the square root, the matrix is not positive-definite.

Conditions for Cholesky Decomposition

ConditionRequirementWhat Happens If Violated
SymmetricA = Aᵀ (A[i,j] = A[j,i])Decomposition is undefined
Positive-DefiniteAll eigenvalues > 0Negative under square root
Squaren×n matrixNot applicable to rectangular

Key Properties

Lower-Triangular
L has zeros above the diagonal
Unique
If A is positive-definite, L is unique
Efficient
~n³/3 operations vs n³/3 × 2 for LU
Stable
No pivoting needed — always stable
det(A) = det(L)²
Determinant from diagonal of L
Solving Ax = b
Forward then back substitution

How to Use the Cholesky Decomposition Calculator

  1. Select matrix size — Choose from 2×2 up to 6×6. Cholesky decomposition requires a square matrix.
  2. Enter values — Fill in the matrix cells. The calculator auto-mirrors entries across the diagonal to enforce symmetry (editing A[i,j] automatically sets A[j,i]).
  3. Click Decompose — Press the "Decompose A = LLᵀ" button to compute the factorization.
  4. Explore the result — Review the color-coded equation A = L × Lᵀ. Click any cell in L to see its derivation formula. Use "Play All" to auto-step through every element.
  5. Verify — The calculator multiplies L × Lᵀ back together and reports the maximum error, confirming the decomposition is correct.

Real-World Applications

📊
Monte Carlo
Generate correlated random variables from a covariance matrix
📡
Kalman Filters
State estimation in navigation and signal processing
🤖
Machine Learning
Gaussian processes, covariance inversion
📐
Optimization
Newton's method with positive-definite Hessians
💰
Finance
Portfolio risk modeling via correlation decomposition
🏗
Engineering
Finite element method stiffness matrices

Cholesky vs Other Decompositions

MethodFactorizationRequirementsComplexity
CholeskyA = LLᵀSymmetric positive-definiten³/3
LUA = LU (or PA = LU)Invertible2n³/3
QRA = QRAny matrix2n³/3 (Householder)
SVDA = UΣVᵀAny matrix~11n³/3
EigendecompositionA = QΛQᵀSymmetric~9n³

Frequently Asked Questions

What is Cholesky decomposition?

Cholesky decomposition (named after Andre-Louis Cholesky) factors a symmetric positive-definite matrix A into A = LLᵀ, where L is a lower-triangular matrix with positive diagonal entries. It is one of the most efficient and numerically stable matrix factorizations available.

When can Cholesky decomposition be applied?

The matrix must be symmetric (A = Aᵀ) and positive-definite (all eigenvalues strictly positive, or equivalently, xᵀAx > 0 for every nonzero vector x). Common examples include covariance matrices, correlation matrices, Gram matrices (XᵀX for full-rank X), and stiffness matrices in structural engineering.

What if my matrix is not positive-definite?

If the matrix is not positive-definite, you will encounter a negative value under a square root during the decomposition, which is not a real number. The calculator will report an error indicating exactly which diagonal step failed. You may want to check your matrix for symmetry errors, or consider LDLᵀ decomposition for positive semi-definite matrices.

How is Cholesky decomposition used to solve linear systems?

To solve Ax = b, first decompose A = LLᵀ. Then solve Ly = b by forward substitution (since L is lower-triangular), and then solve Lᵀx = y by back substitution. This is about twice as fast as solving via LU decomposition because L and Lᵀ share the same data.

What is the relationship between Cholesky and the determinant?

Since A = LLᵀ, we have det(A) = det(L) × det(Lᵀ) = det(L)². And since L is triangular, det(L) is simply the product of its diagonal entries. This provides an efficient way to compute the determinant of a positive-definite matrix.

Can Cholesky decomposition be applied to complex matrices?

Yes, for complex matrices the condition is that A must be Hermitian positive-definite (A = A*, where A* is the conjugate transpose). The decomposition becomes A = LLᵀ where Lᵀ is replaced by L* (the conjugate transpose of L). This calculator handles real-valued matrices.

引用此內容、頁面或工具為:

"喬列斯基分解計算機" 於 https://MiniWebtool.com/zh-tw/喬列斯基分解計算機/,來自 MiniWebtool,https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-04-12

您還可以嘗試我們的 AI數學解題器 GPT,通過自然語言問答解決您的數學問題。

線性代數:

常用工具:

隨機撲克牌產生器分數計算機真心話大冒險產生器模計算機斜邊計算機百分比增加計算機相對標準偏差計算機隨機信用卡生成器圓計算機比例計算機羅馬數字轉換器樣本標準差計算機最簡分數計算機kpa到psi轉換器🎮 遊戲靈敏度轉換器kg到lbs轉換器磅轉公斤轉換器百分比減少計算機百分比增長率計算機商和餘數計算機百分比折扣計算機HEX計算機Instagram用戶ID查詢毛利率計算機校正鈣計算機MAC地址查找圖片分割器百分比變化計算機最小公倍數計算機質數分解計算機隨機餐點產生器太陽、月亮與上升星座計算機 🌞🌙✨年齡計算機反向文字隨機字母生成器坡度與傾斜度計算機🌡️ 體感溫度計算機影片轉圖片擷取器查找並替換文字ANC計算機百分比誤差計算機因子計算機AI內容檢測器畢達哥拉斯定理計算機標準偏差計算機 - 高精度Bar to PSI 轉換器分數百分比轉換器隨機名稱生成器調整影片速度年份天數計算機 - 今天是今年的第幾天簡單利息計算機考拉茲猜想計算機SRT時間偏移音訊分割器複利計算機賓果卡生成器凱薩密碼工具二次公式計算機兩點間距離計算機CAGR計算機加價計算機樂透號碼生成器定期存款計算機心算訓練器對數計算機影片壓縮器隨機數學題產生器小字體生成器 ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾出生星期計算機迷宮產生器克到磅轉換器血壓解讀器棒球打擊率計算機土星回歸計算機合併影片平均值計算機分數到小數計算機📅 日期計算機⏱️ 小時計算機psi到kpa轉換器隨機選擇器文字重複工具比率與百分比計算機FPS 轉換器橢圓 周長計算機速度計算機總體標準差計算機-高精度cpm計算機百分比到ppm轉換器隨機顏色生成器YouTube頻道統計可整除測試計算機SRT轉換為TXT工具壓力轉換器星期幾計算機磅到克轉換器質數檢查器HEX轉換器積分計算機Facebook用戶ID查詢隨機英文單字產生器GUID / UUID 生成器工作搜尋器最大公因子計算機複數計算機我的幸運數字是什麼隨機物品生成器💧 露點計算機組合計算機剪刀石頭布產生器MAC地址產生器條碼產生器百分比計算機上壘率計算機小數到分數計算機數獨產生器與求解器直角三角形計算機鋼筋計算機音節計數器騎行速度計算機文件大小轉換器純利潤計算機隨機日期生成器預期壽命計算機圖片打碼工具汽車貸款計算機OPS計算機刪除線文字產生器排序數字總和計算機步數距離計算機行數統計工具ERA計算機保齡球計分計算機速度轉換器隨機錦標賽對陣生成器弧長計算機汽車折舊計算機立方根計算機PSI 轉 Bar 轉換器YouTube收益估算器影片分割器隨機貓狗名字產生器體積轉換器演講時間計算機歐姆定律計算機線性迴歸計算機公因子計算機密度計算機為影片新增浮水印隨機時間生成器填字遊戲製作器投球命中率計算機黃金比例計算機線規計算機隨機生日生成器預產期計算機WHtR計算機移除標點符號線上工具游泳配速計算機凱利公式計算機相關係數計算器樓梯計算機鋼材重量計算機XML驗證器圓台計算機GIF 轉 MP4 轉換器愛情兼容性計算機比率計算機AI標點符號添加器正方形計算機泊松分佈計算機隨機字符串生成器圓柱體體積計算機 高精度慣性矩計算機跑步配速計算機克到盎司轉換器圖片旋轉器比較分數計算機階乘計算機刪除換行符橢圓面積計算機科學記數法計算機Log Base 10 計算機三相功率計算機二進製計算機旋轉影片質數列表多分數計算機斜率計算機🌐 時區轉換器中位數計算機功率轉換器⏱️ 倒數計時器年金現值計算機棒球長打率計算機混凝土計算機現值計算機股票平均成本計算機GIF 製作器踢腳板與飾條計算機壁板計算機露臺木器染色劑計算器草籽計算機草皮計算機瀝青計算機立方碼計算機天線長度計算機電線管填充率計算機串聯並聯電容計算機感抗計算機房間照明計算機勒克斯轉流明計算機流明轉瓦特轉換器發電機功率計算機mah到wh轉換器kVA計算機安培轉瓦特計算機瓦特轉安培計算機串聯電阻計算機摩擦力計算機斜面計算機機械利益計算機聲速計算機波速計算機浮力計算機終端速度計算機德布羅意波長計算機光子能量計算機emc2計算機時間膨脹計算機克卜勒第三定律計算機逃逸速度計算機萬有引力計算機比爾-朗伯定律計算機能斯特方程式計算機滲透壓計算機沸點上升計算機凝固點下降計算機百分比組成計算機當量濃度計算機重量莫耳濃度計算機pKa到Ka轉換器亨德森-哈塞爾巴爾赫計算機理論產量計算機限量試劑計算機電子組態計算機互動式元素週期表AI教案產生器AI測驗產生器引用產生器 (APA/MLA/Chicago)出席率計算機AP分數計算機ACT分數計算機SAT分數計算機百分比轉CGPA轉換器CGPA轉百分比轉換器簡易評分器 EZ Grader養育孩子成本計算機寶寶奶量計算機尿布尺寸計算機嬰兒名字產生器寶寶眼睛顏色預測器兒童BMI百分位計算機兒童身高預測器hcg翻倍時間計算機試管嬰兒預產期計算機著床計算機中國生男生女預測器ISO 8601 日期格式化工具儒略日轉換器午睡計算機月相計算機日出日落計算機世界時鐘日期至羅馬數字轉換器退休倒數計時戒癮天數計算機半歲生日計算機紀念日計算機週數計算機小費分配計算機電子郵件行銷ROI計算機每筆潛在客戶成本計算機營運資本計算機邊際貢獻計算機FIFO / LIFO 計算機安全庫存計算機再訂購點計算機經濟訂購量eoq計算機折舊計算機手工藝品定價計算機批發價格計算機Shopify 利潤計算機Amazon FBA 計算機eBay費用計算機Etsy費用計算機Stripe 手續費計算機PayPal手續費計算機投注賠率轉換器十一奉獻計算機天課計算機英國印花稅計算機HRA免稅計算機服務酬金計算機NPS計算機EPF計算機PPF計算機RD計算機SWP計算機稅前薪資倒推計算機貸款比較計算機信用使用率計算機CD階梯計算機美國國庫券T-Bill計算機I 系列儲蓄債券計算機529大學儲蓄計算機HSA計算機遣散費計算機加薪計算機發票產生器出差津貼計算機里程報銷計算機房租漲幅計算機按比例租金計算機房租負擔能力計算機汽車落地價計算機購車預算計算器機車貸款計算機房車貸款計算機船舶貸款計算機土地貸款計算機建築貸款計算機只付利息抵押貸款計算機氣球貸款計算機房貸點數計算機PMI計算機雙週房貸還款計算機ARM浮動利率房貸計算機VA貸款計算機實領薪資計算機AI SQL 查詢產生器AI正規表達式產生器AI 資料視覺化工具(貼上 CSV)AI文字語氣分析器AI履歷分析器AI單位轉換器自然語言AI道歉信產生器AI禮貌藉口產生器AI 旅行行程產生器AI閱讀清單產生器AI健身計劃產生器AI膳食計畫生成器AI禮物點子產生器AI食譜產生器依現有食材獎學金投資報酬率計算機大學費用計算機語言學習流利度小時數計算機詞彙測驗產生器康乃爾筆記產生器學習曲線計算機閃卡間隔重複排程器顏料調色計算機磁磚填縫劑計算機六標準差製程能力計算機YouTube縮圖下載器隨機RPG角色生成器