Mertens' theorems: Difference between revisions
en>YFdyh-bot m r2.7.3) (Robot: Modifying de:Satz von Mertens (Zahlentheorie) |
en>BG19bot m WP:CHECKWIKI error fix for #61. Punctuation goes before References. Do general fixes if a problem exists. - using AWB (9890) |
||
| Line 1: | Line 1: | ||
== | In [[control theory]], the '''discrete Lyapunov equation''' is of the form | ||
:<math>A X A^{H} - X + Q = 0</math> | |||
where <math>Q</math> is a [[Hermitian matrix]] and <math>A^H</math> is the [[conjugate transpose]] of <math>A</math>. The '''continuous Lyapunov equation''' is of form | |||
:<math>AX + XA^H + Q = 0</math>. | |||
The Lyapunov equation occurs in many branches of control theory, such as [[Lyapunov stability|stability analysis]] and [[optimal control]]. This and related equations are named after the Russian mathematician [[Aleksandr Lyapunov]]. | |||
== | ==Application to stability== | ||
In the following theorems <math>A, P, Q \in \mathbb{R}^{n \times n}</math>, and <math>P</math> and <math>Q</math> are symmetric. The notation <math>P>0</math> means that the matrix <math>P</math> is [[Positive-definite matrix|positive definite]]. | |||
'''Theorem''' (continuous time version). Given any <math>Q>0</math>, there exists a unique <math>P>0</math> satisfying <math>A^T P + P A + Q = 0</math> if and only if the linear system <math>\dot{x}=A x</math> is globally asymptotically stable. The quadratic function <math>V(z)=z^T P z</math> is a [[Lyapunov function]] that can be used to verify stability. | |||
'''Theorem''' (discrete time version). Given any <math>Q>0</math>, there exists a unique <math>P>0</math> satisfying <math>A^T P A -P + Q = 0</math> if and only if the linear system <math>x(t+1)=A x(t)</math> is globally asymptotically stable. As before, <math>z^T P z</math> is a Lyapunov function. | |||
==Computational aspects of solution== | |||
The discrete Lyapunov equations can, by using [[Schur complement]]s, be written as | |||
:<math>\begin{bmatrix} | |||
X^{-1} & A \\ A^H & X-Q | |||
\end{bmatrix}=0</math> | |||
or equivalently as | |||
:<math>\begin{bmatrix} | |||
X & XA \\ A^HX & X-Q | |||
\end{bmatrix}=0</math>. | |||
Specialized software is available for solving Lyapunov equations. For the discrete case, the Schur method of Kitagawa is often used.<ref>{{cite journal |last=Kitagawa |first=G. |title=An Algorithm for Solving the Matrix Equation X = F X F' + S |journal=International Journal of Control |volume=25 |issue=5 |pages=745–753 |year=1977 |doi=10.1080/00207177708922266 }}</ref> For the continuous Lyapunov equation the method of Bartels and Stewart can be used.<ref>{{cite journal |first=R. H. |last=Bartels |first2=G. W. |last2=Stewart |title=Algorithm 432: Solution of the matrix equation AX + XB = C |journal=Comm. ACM |volume=15 |year=1972 |issue=9 |pages=820–826 |doi=10.1145/361573.361582 }}</ref> | |||
==Analytic Solution== | |||
Defining the <math>\operatorname{vec} (A)</math> operator as stacking the columns of a matrix <math>A</math> and <math>A \otimes B</math> as the [[Kronecker product]] of <math>A</math> and <math>B</math>, the continuous time and discrete time Lyapunov equations can be expressed as solutions of a matrix equation. Furthermore, if the matrix <math>A</math> is stable, the solution can also be expressed as an integral (continuous time case) or as an infinite sum (discrete time case). | |||
===Discrete time=== | |||
Using the result that <math> \operatorname{vec}(ABC)=(C^{T} \otimes A)\operatorname{vec}(B) </math>, one has | |||
:<math> (I-A \otimes A)\operatorname{vec}(X) = \operatorname{vec}(Q) </math> | |||
where <math>I</math> is a [[conformable]] identity matrix.<ref>{{cite book |first=J. |last=Hamilton |year=1994 |title=Time Series Analysis |at=Equations 10.2.13 and 10.2.18 |location= |publisher=Princeton University Press |isbn=0-691-04289-6 }}</ref> One may then solve for <math>\operatorname{vec}(X)</math> by inverting or solving the linear equations. To get <math>X</math>, one must just reshape <math>\operatorname{vec} (X)</math> appropriately. | |||
Moreover, if <math>A</math> is stable, the solution <math>X</math> can also be written as | |||
:<math> X = \sum_{k=0}^{\infty} A^{k} Q (A^{H})^k </math>. | |||
===Continuous time=== | |||
Using again the Kronecker product notation and the vectorization operator, one has the matrix equation | |||
:<math> (I_n \otimes A + \bar{A} \otimes I_n) \operatorname{vec}X = -\operatorname{vec}Q, </math> | |||
where <math>\bar{A}</math> denotes the matrix obtained by complex conjugating the entries of <math>A</math>. | |||
Likewise the discrete-time case, if <math>A</math> is stable, the solution <math>X</math> can also be written as | |||
:<math> X = \int\limits_0^\infty e^{A \tau} Q e^{A^H \tau} d\tau </math>. | |||
==See also== | |||
* [[Sylvester equation]] | |||
* [[Algebraic Riccati equation]] | |||
==References== | |||
{{reflist}} | |||
==External links== | |||
* [http://calculator-fx.com/calculator/linear-algebra/solve-lyapunov-eqution Online solver for arbitrary sized matrices.] | |||
{{DEFAULTSORT:Lyapunov Equation}} | |||
[[Category:Control theory]] | |||
Revision as of 09:07, 1 February 2014
In control theory, the discrete Lyapunov equation is of the form
where is a Hermitian matrix and is the conjugate transpose of . The continuous Lyapunov equation is of form
The Lyapunov equation occurs in many branches of control theory, such as stability analysis and optimal control. This and related equations are named after the Russian mathematician Aleksandr Lyapunov.
Application to stability
In the following theorems , and and are symmetric. The notation means that the matrix is positive definite.
Theorem (continuous time version). Given any , there exists a unique satisfying if and only if the linear system is globally asymptotically stable. The quadratic function is a Lyapunov function that can be used to verify stability.
Theorem (discrete time version). Given any , there exists a unique satisfying if and only if the linear system is globally asymptotically stable. As before, is a Lyapunov function.
Computational aspects of solution
The discrete Lyapunov equations can, by using Schur complements, be written as
or equivalently as
Specialized software is available for solving Lyapunov equations. For the discrete case, the Schur method of Kitagawa is often used.[1] For the continuous Lyapunov equation the method of Bartels and Stewart can be used.[2]
Analytic Solution
Defining the operator as stacking the columns of a matrix and as the Kronecker product of and , the continuous time and discrete time Lyapunov equations can be expressed as solutions of a matrix equation. Furthermore, if the matrix is stable, the solution can also be expressed as an integral (continuous time case) or as an infinite sum (discrete time case).
Discrete time
Using the result that , one has
where is a conformable identity matrix.[3] One may then solve for by inverting or solving the linear equations. To get , one must just reshape appropriately.
Moreover, if is stable, the solution can also be written as
Continuous time
Using again the Kronecker product notation and the vectorization operator, one has the matrix equation
where denotes the matrix obtained by complex conjugating the entries of .
Likewise the discrete-time case, if is stable, the solution can also be written as
See also
References
43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.
External links
- ↑ One of the biggest reasons investing in a Singapore new launch is an effective things is as a result of it is doable to be lent massive quantities of money at very low interest rates that you should utilize to purchase it. Then, if property values continue to go up, then you'll get a really high return on funding (ROI). Simply make sure you purchase one of the higher properties, reminiscent of the ones at Fernvale the Riverbank or any Singapore landed property Get Earnings by means of Renting
In its statement, the singapore property listing - website link, government claimed that the majority citizens buying their first residence won't be hurt by the new measures. Some concessions can even be prolonged to chose teams of consumers, similar to married couples with a minimum of one Singaporean partner who are purchasing their second property so long as they intend to promote their first residential property. Lower the LTV limit on housing loans granted by monetary establishments regulated by MAS from 70% to 60% for property purchasers who are individuals with a number of outstanding housing loans on the time of the brand new housing purchase. Singapore Property Measures - 30 August 2010 The most popular seek for the number of bedrooms in Singapore is 4, followed by 2 and three. Lush Acres EC @ Sengkang
Discover out more about real estate funding in the area, together with info on international funding incentives and property possession. Many Singaporeans have been investing in property across the causeway in recent years, attracted by comparatively low prices. However, those who need to exit their investments quickly are likely to face significant challenges when trying to sell their property – and could finally be stuck with a property they can't sell. Career improvement programmes, in-house valuation, auctions and administrative help, venture advertising and marketing, skilled talks and traisning are continuously planned for the sales associates to help them obtain better outcomes for his or her shoppers while at Knight Frank Singapore. No change Present Rules
Extending the tax exemption would help. The exemption, which may be as a lot as $2 million per family, covers individuals who negotiate a principal reduction on their existing mortgage, sell their house short (i.e., for lower than the excellent loans), or take part in a foreclosure course of. An extension of theexemption would seem like a common-sense means to assist stabilize the housing market, but the political turmoil around the fiscal-cliff negotiations means widespread sense could not win out. Home Minority Chief Nancy Pelosi (D-Calif.) believes that the mortgage relief provision will be on the table during the grand-cut price talks, in response to communications director Nadeam Elshami. Buying or promoting of blue mild bulbs is unlawful.
A vendor's stamp duty has been launched on industrial property for the primary time, at rates ranging from 5 per cent to 15 per cent. The Authorities might be trying to reassure the market that they aren't in opposition to foreigners and PRs investing in Singapore's property market. They imposed these measures because of extenuating components available in the market." The sale of new dual-key EC models will even be restricted to multi-generational households only. The models have two separate entrances, permitting grandparents, for example, to dwell separately. The vendor's stamp obligation takes effect right this moment and applies to industrial property and plots which might be offered inside three years of the date of buy. JLL named Best Performing Property Brand for second year running
The data offered is for normal info purposes only and isn't supposed to be personalised investment or monetary advice. Motley Fool Singapore contributor Stanley Lim would not personal shares in any corporations talked about. Singapore private home costs increased by 1.eight% within the fourth quarter of 2012, up from 0.6% within the earlier quarter. Resale prices of government-built HDB residences which are usually bought by Singaporeans, elevated by 2.5%, quarter on quarter, the quickest acquire in five quarters. And industrial property, prices are actually double the levels of three years ago. No withholding tax in the event you sell your property. All your local information regarding vital HDB policies, condominium launches, land growth, commercial property and more
There are various methods to go about discovering the precise property. Some local newspapers (together with the Straits Instances ) have categorised property sections and many local property brokers have websites. Now there are some specifics to consider when buying a 'new launch' rental. Intended use of the unit Every sale begins with 10 p.c low cost for finish of season sale; changes to 20 % discount storewide; follows by additional reduction of fiftyand ends with last discount of 70 % or extra. Typically there is even a warehouse sale or transferring out sale with huge mark-down of costs for stock clearance. Deborah Regulation from Expat Realtor shares her property market update, plus prime rental residences and houses at the moment available to lease Esparina EC @ Sengkang - ↑ One of the biggest reasons investing in a Singapore new launch is an effective things is as a result of it is doable to be lent massive quantities of money at very low interest rates that you should utilize to purchase it. Then, if property values continue to go up, then you'll get a really high return on funding (ROI). Simply make sure you purchase one of the higher properties, reminiscent of the ones at Fernvale the Riverbank or any Singapore landed property Get Earnings by means of Renting
In its statement, the singapore property listing - website link, government claimed that the majority citizens buying their first residence won't be hurt by the new measures. Some concessions can even be prolonged to chose teams of consumers, similar to married couples with a minimum of one Singaporean partner who are purchasing their second property so long as they intend to promote their first residential property. Lower the LTV limit on housing loans granted by monetary establishments regulated by MAS from 70% to 60% for property purchasers who are individuals with a number of outstanding housing loans on the time of the brand new housing purchase. Singapore Property Measures - 30 August 2010 The most popular seek for the number of bedrooms in Singapore is 4, followed by 2 and three. Lush Acres EC @ Sengkang
Discover out more about real estate funding in the area, together with info on international funding incentives and property possession. Many Singaporeans have been investing in property across the causeway in recent years, attracted by comparatively low prices. However, those who need to exit their investments quickly are likely to face significant challenges when trying to sell their property – and could finally be stuck with a property they can't sell. Career improvement programmes, in-house valuation, auctions and administrative help, venture advertising and marketing, skilled talks and traisning are continuously planned for the sales associates to help them obtain better outcomes for his or her shoppers while at Knight Frank Singapore. No change Present Rules
Extending the tax exemption would help. The exemption, which may be as a lot as $2 million per family, covers individuals who negotiate a principal reduction on their existing mortgage, sell their house short (i.e., for lower than the excellent loans), or take part in a foreclosure course of. An extension of theexemption would seem like a common-sense means to assist stabilize the housing market, but the political turmoil around the fiscal-cliff negotiations means widespread sense could not win out. Home Minority Chief Nancy Pelosi (D-Calif.) believes that the mortgage relief provision will be on the table during the grand-cut price talks, in response to communications director Nadeam Elshami. Buying or promoting of blue mild bulbs is unlawful.
A vendor's stamp duty has been launched on industrial property for the primary time, at rates ranging from 5 per cent to 15 per cent. The Authorities might be trying to reassure the market that they aren't in opposition to foreigners and PRs investing in Singapore's property market. They imposed these measures because of extenuating components available in the market." The sale of new dual-key EC models will even be restricted to multi-generational households only. The models have two separate entrances, permitting grandparents, for example, to dwell separately. The vendor's stamp obligation takes effect right this moment and applies to industrial property and plots which might be offered inside three years of the date of buy. JLL named Best Performing Property Brand for second year running
The data offered is for normal info purposes only and isn't supposed to be personalised investment or monetary advice. Motley Fool Singapore contributor Stanley Lim would not personal shares in any corporations talked about. Singapore private home costs increased by 1.eight% within the fourth quarter of 2012, up from 0.6% within the earlier quarter. Resale prices of government-built HDB residences which are usually bought by Singaporeans, elevated by 2.5%, quarter on quarter, the quickest acquire in five quarters. And industrial property, prices are actually double the levels of three years ago. No withholding tax in the event you sell your property. All your local information regarding vital HDB policies, condominium launches, land growth, commercial property and more
There are various methods to go about discovering the precise property. Some local newspapers (together with the Straits Instances ) have categorised property sections and many local property brokers have websites. Now there are some specifics to consider when buying a 'new launch' rental. Intended use of the unit Every sale begins with 10 p.c low cost for finish of season sale; changes to 20 % discount storewide; follows by additional reduction of fiftyand ends with last discount of 70 % or extra. Typically there is even a warehouse sale or transferring out sale with huge mark-down of costs for stock clearance. Deborah Regulation from Expat Realtor shares her property market update, plus prime rental residences and houses at the moment available to lease Esparina EC @ Sengkang - ↑ 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534