Inverse of a triangle matrix The 2019 Stack Overflow Developer Survey Results Are InInverse of $(A + B)$ and $(A + BCD)$?How to invert a matrixmatrix inverse and limitName for 'flipped' triangular matrixCalculation of $trace(L^THL)$, L is lower triangular, H is symmetric.Solving a matrix equation problemDerivative of Symmetric Positive Definite Matrix w.r.t. to its Lower Triangular Cholesky FactorHow to decompose a square matrix into two non-square matrices?Cholesky decomposition of the inverse of a matrixUsing Cholesky decomposition to compute covariance matrix determinant

What do hard-Brexiteers want with respect to the Irish border?

Why hard-Brexiteers don't insist on a hard border to prevent illegal immigration after Brexit?

Does a dangling wire really electrocute me if I'm standing in water?

Can someone be penalized for an "unlawful" act if no penalty is specified?

Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Did 3000BC Egyptians use meteoric iron weapons?

Return to UK after being refused entry years previously

What do the Banks children have against barley water?

How can I autofill dates in Excel excluding Sunday?

Lightning Grid - Columns and Rows?

What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?

Have you ever entered Singapore using a different passport or name?

If a Druid sees an animal’s corpse, can they wild shape into that animal?

What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?

Pokemon Turn Based battle (Python)

For what reasons would an animal species NOT cross a *horizontal* land bridge?

Are there incongruent pythagorean triangles with the same perimeter and same area?

Button changing it's text & action. Good or terrible?

Right tool to dig six foot holes?

Is three citations per paragraph excessive for undergraduate research paper?

Is there any way to tell whether the shot is going to hit you or not?

Is "plugging out" electronic devices an American expression?

How to deal with fear of taking dependencies



Inverse of a triangle matrix



The 2019 Stack Overflow Developer Survey Results Are InInverse of $(A + B)$ and $(A + BCD)$?How to invert a matrixmatrix inverse and limitName for 'flipped' triangular matrixCalculation of $trace(L^THL)$, L is lower triangular, H is symmetric.Solving a matrix equation problemDerivative of Symmetric Positive Definite Matrix w.r.t. to its Lower Triangular Cholesky FactorHow to decompose a square matrix into two non-square matrices?Cholesky decomposition of the inverse of a matrixUsing Cholesky decomposition to compute covariance matrix determinant










0












$begingroup$


I have been given an assignment where I need to find the inverse of an upper triangular matrix. I have been given these two formulas and am to use Lemma $2$. Can someone explain to me how this works. I understand Lemma $1$ its pretty simple but the different powers in lemma two lost me. Why would it go from first power to squared to suddenly fourth and then to logarithms? Below are the two lemmas I have been given.




I Triangular matrices for linear systems with special structure



$1$. Triangular matrices and back substitution



$A$ - lower triangular square matrix $n times n$; $a_ij = 0$ for $i<j$
$det A neq 0$ nonsingular



First $a_ii=1$ for all $i$



Split $A=I-L$, $l_ij$ for $i leq j$



$L^n=0$ easy to verify



Lemma $mathbf 1$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =I +L +L^2 +ldots +L^n-1.$$



Proof: Let $B$ be equal to the right-hand side of equation ($1$). Then $$B(I-L)=I-L^n=I$$ because $L^n=0$ and therefore $B=A^-1$.



Lemma $mathbf 2$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =(I+L^2^[log n]-1) (I+L^2^[log n]-2) cdot ldots cdot (I+L^4) (I+L^2) (I+L). tag2$$
Proof: Expand the product in the right-hand side of ($2$). Since $L^n=0$, we are left with $I +L +L^2 +ldots +L^n-1$ which is equal to $A^-1$ by Lemma $1$. $$tagQ.E.D.$$




I am working with an original matrix of size $1473 times 1473$. Was told to do a Cholesky decomposition on it and then invert it using Lemma $2$.



Maybe even a name for these two lemmas so I can do more reading would help too.



Any help is greatly appreciated.










share|cite|improve this question











$endgroup$











  • $begingroup$
    The exponents are successive powers of two. Consider the binary representation of a number.
    $endgroup$
    – amd
    Jun 8 '17 at 21:47










  • $begingroup$
    In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
    $endgroup$
    – amd
    Jun 8 '17 at 21:48















0












$begingroup$


I have been given an assignment where I need to find the inverse of an upper triangular matrix. I have been given these two formulas and am to use Lemma $2$. Can someone explain to me how this works. I understand Lemma $1$ its pretty simple but the different powers in lemma two lost me. Why would it go from first power to squared to suddenly fourth and then to logarithms? Below are the two lemmas I have been given.




I Triangular matrices for linear systems with special structure



$1$. Triangular matrices and back substitution



$A$ - lower triangular square matrix $n times n$; $a_ij = 0$ for $i<j$
$det A neq 0$ nonsingular



First $a_ii=1$ for all $i$



Split $A=I-L$, $l_ij$ for $i leq j$



$L^n=0$ easy to verify



Lemma $mathbf 1$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =I +L +L^2 +ldots +L^n-1.$$



Proof: Let $B$ be equal to the right-hand side of equation ($1$). Then $$B(I-L)=I-L^n=I$$ because $L^n=0$ and therefore $B=A^-1$.



Lemma $mathbf 2$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =(I+L^2^[log n]-1) (I+L^2^[log n]-2) cdot ldots cdot (I+L^4) (I+L^2) (I+L). tag2$$
Proof: Expand the product in the right-hand side of ($2$). Since $L^n=0$, we are left with $I +L +L^2 +ldots +L^n-1$ which is equal to $A^-1$ by Lemma $1$. $$tagQ.E.D.$$




I am working with an original matrix of size $1473 times 1473$. Was told to do a Cholesky decomposition on it and then invert it using Lemma $2$.



Maybe even a name for these two lemmas so I can do more reading would help too.



Any help is greatly appreciated.










share|cite|improve this question











$endgroup$











  • $begingroup$
    The exponents are successive powers of two. Consider the binary representation of a number.
    $endgroup$
    – amd
    Jun 8 '17 at 21:47










  • $begingroup$
    In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
    $endgroup$
    – amd
    Jun 8 '17 at 21:48













0












0








0





$begingroup$


I have been given an assignment where I need to find the inverse of an upper triangular matrix. I have been given these two formulas and am to use Lemma $2$. Can someone explain to me how this works. I understand Lemma $1$ its pretty simple but the different powers in lemma two lost me. Why would it go from first power to squared to suddenly fourth and then to logarithms? Below are the two lemmas I have been given.




I Triangular matrices for linear systems with special structure



$1$. Triangular matrices and back substitution



$A$ - lower triangular square matrix $n times n$; $a_ij = 0$ for $i<j$
$det A neq 0$ nonsingular



First $a_ii=1$ for all $i$



Split $A=I-L$, $l_ij$ for $i leq j$



$L^n=0$ easy to verify



Lemma $mathbf 1$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =I +L +L^2 +ldots +L^n-1.$$



Proof: Let $B$ be equal to the right-hand side of equation ($1$). Then $$B(I-L)=I-L^n=I$$ because $L^n=0$ and therefore $B=A^-1$.



Lemma $mathbf 2$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =(I+L^2^[log n]-1) (I+L^2^[log n]-2) cdot ldots cdot (I+L^4) (I+L^2) (I+L). tag2$$
Proof: Expand the product in the right-hand side of ($2$). Since $L^n=0$, we are left with $I +L +L^2 +ldots +L^n-1$ which is equal to $A^-1$ by Lemma $1$. $$tagQ.E.D.$$




I am working with an original matrix of size $1473 times 1473$. Was told to do a Cholesky decomposition on it and then invert it using Lemma $2$.



Maybe even a name for these two lemmas so I can do more reading would help too.



Any help is greatly appreciated.










share|cite|improve this question











$endgroup$




I have been given an assignment where I need to find the inverse of an upper triangular matrix. I have been given these two formulas and am to use Lemma $2$. Can someone explain to me how this works. I understand Lemma $1$ its pretty simple but the different powers in lemma two lost me. Why would it go from first power to squared to suddenly fourth and then to logarithms? Below are the two lemmas I have been given.




I Triangular matrices for linear systems with special structure



$1$. Triangular matrices and back substitution



$A$ - lower triangular square matrix $n times n$; $a_ij = 0$ for $i<j$
$det A neq 0$ nonsingular



First $a_ii=1$ for all $i$



Split $A=I-L$, $l_ij$ for $i leq j$



$L^n=0$ easy to verify



Lemma $mathbf 1$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =I +L +L^2 +ldots +L^n-1.$$



Proof: Let $B$ be equal to the right-hand side of equation ($1$). Then $$B(I-L)=I-L^n=I$$ because $L^n=0$ and therefore $B=A^-1$.



Lemma $mathbf 2$. If $A=I-L$, where $L$ is strictly lower triangular then $$A^-1 =(I+L^2^[log n]-1) (I+L^2^[log n]-2) cdot ldots cdot (I+L^4) (I+L^2) (I+L). tag2$$
Proof: Expand the product in the right-hand side of ($2$). Since $L^n=0$, we are left with $I +L +L^2 +ldots +L^n-1$ which is equal to $A^-1$ by Lemma $1$. $$tagQ.E.D.$$




I am working with an original matrix of size $1473 times 1473$. Was told to do a Cholesky decomposition on it and then invert it using Lemma $2$.



Maybe even a name for these two lemmas so I can do more reading would help too.



Any help is greatly appreciated.







inverse matrix-equations matrix-decomposition






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Mar 23 at 17:18









Rócherz

3,0263823




3,0263823










asked Jun 8 '17 at 20:18









Mnkyskilz 21Mnkyskilz 21

1




1











  • $begingroup$
    The exponents are successive powers of two. Consider the binary representation of a number.
    $endgroup$
    – amd
    Jun 8 '17 at 21:47










  • $begingroup$
    In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
    $endgroup$
    – amd
    Jun 8 '17 at 21:48
















  • $begingroup$
    The exponents are successive powers of two. Consider the binary representation of a number.
    $endgroup$
    – amd
    Jun 8 '17 at 21:47










  • $begingroup$
    In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
    $endgroup$
    – amd
    Jun 8 '17 at 21:48















$begingroup$
The exponents are successive powers of two. Consider the binary representation of a number.
$endgroup$
– amd
Jun 8 '17 at 21:47




$begingroup$
The exponents are successive powers of two. Consider the binary representation of a number.
$endgroup$
– amd
Jun 8 '17 at 21:47












$begingroup$
In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
$endgroup$
– amd
Jun 8 '17 at 21:48




$begingroup$
In the future, please take the time to type in important parts of your questions instead of posting images. Images take longer to download, are not searchable and are inaccessible to people using screen readers.
$endgroup$
– amd
Jun 8 '17 at 21:48










0






active

oldest

votes












Your Answer





StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2315203%2finverse-of-a-triangle-matrix%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2315203%2finverse-of-a-triangle-matrix%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Solar Wings Breeze Design and development Specifications (Breeze) References Navigation menu1368-485X"Hang glider: Breeze (Solar Wings)"e

Kathakali Contents Etymology and nomenclature History Repertoire Songs and musical instruments Traditional plays Styles: Sampradayam Training centers and awards Relationship to other dance forms See also Notes References External links Navigation menueThe Illustrated Encyclopedia of Hinduism: A-MSouth Asian Folklore: An EncyclopediaRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to Play10.1353/atj.2005.0004The Illustrated Encyclopedia of Hinduism: A-MEncyclopedia of HinduismKathakali Dance-drama: Where Gods and Demons Come to PlaySonic Liturgy: Ritual and Music in Hindu Tradition"The Mirror of Gesture"Kathakali Dance-drama: Where Gods and Demons Come to Play"Kathakali"Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceMedieval Indian Literature: An AnthologyThe Oxford Companion to Indian TheatreSouth Asian Folklore: An Encyclopedia : Afghanistan, Bangladesh, India, Nepal, Pakistan, Sri LankaThe Rise of Performance Studies: Rethinking Richard Schechner's Broad SpectrumIndian Theatre: Traditions of PerformanceModern Asian Theatre and Performance 1900-2000Critical Theory and PerformanceBetween Theater and AnthropologyKathakali603847011Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceBetween Theater and AnthropologyBetween Theater and AnthropologyNambeesan Smaraka AwardsArchivedThe Cambridge Guide to TheatreRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeThe Garland Encyclopedia of World Music: South Asia : the Indian subcontinentThe Ethos of Noh: Actors and Their Art10.2307/1145740By Means of Performance: Intercultural Studies of Theatre and Ritual10.1017/s204912550000100xReconceiving the Renaissance: A Critical ReaderPerformance TheoryListening to Theatre: The Aural Dimension of Beijing Opera10.2307/1146013Kathakali: The Art of the Non-WorldlyOn KathakaliKathakali, the dance theatreThe Kathakali Complex: Performance & StructureKathakali Dance-Drama: Where Gods and Demons Come to Play10.1093/obo/9780195399318-0071Drama and Ritual of Early Hinduism"In the Shadow of Hollywood Orientalism: Authentic East Indian Dancing"10.1080/08949460490274013Sanskrit Play Production in Ancient IndiaIndian Music: History and StructureBharata, the Nāṭyaśāstra233639306Table of Contents2238067286469807Dance In Indian Painting10.2307/32047833204783Kathakali Dance-Theatre: A Visual Narrative of Sacred Indian MimeIndian Classical Dance: The Renaissance and BeyondKathakali: an indigenous art-form of Keralaeee

Method to test if a number is a perfect power? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Detecting perfect squares faster than by extracting square rooteffective way to get the integer sequence A181392 from oeisA rarely mentioned fact about perfect powersHow many numbers such $n$ are there that $n<100,lfloorsqrtn rfloor mid n$Check perfect squareness by modulo division against multiple basesFor what pair of integers $(a,b)$ is $3^a + 7^b$ a perfect square.Do there exist any positive integers $n$ such that $lfloore^nrfloor$ is a perfect power? What is the probability that one exists?finding perfect power factors of an integerProve that the sequence contains a perfect square for any natural number $m $ in the domain of $f$ .Counting Perfect Powers