Pseudo-Anosov map: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Headbomb
m Various citation cleanup (identifiers mostly), replaced: | url=http://dx.doi.org/10.1090/S0273-0979-1988-15685-6 → | doi=10.1090/S0273-0979-1988-15685-6, | id={{MR|956596}} → | mr=956596 using AWB
 
en>PseudoAnosov
→‎Definition of a pseudo-Anosov map: Add the word dilatation for describing lambda
Line 1: Line 1:
Alyson is the title people use to contact me and I believe it sounds fairly great when you say it. Alaska is exactly where he's usually been living. Invoicing is my occupation. What me and my family love is to climb but I'm considering on beginning something new.<br><br>My site - [http://appin.co.kr/board_Zqtv22/688025 online psychics]
{{DISPLAYTITLE:''s''<sub>''mn''</sub> theorem}}
In [[recursion theory|computability theory]] the '''''s''<sub>''mn''</sub> theorem''', (also called the '''translation lemma''', '''parameter theorem''', or '''parameterization theorem''') is a basic result about [[programming language]]s (and, more generally, [[Gödel numbering]]s of the [[computable function]]s) (Soare 1987, Rogers 1967).  It was first proved by [[Stephen Cole Kleene]] (Kleene 1943).
 
In practical terms, the theorem says that for a given programming language and positive integers ''m'' and ''n'', there is a particular [[algorithm]] that operates on the [[source code]] of programs with ''m''&nbsp;+&nbsp;''n'' [[free variables]]. This algorithm produces source code that effectively substitutes ''m'' given values for the first ''m'' free variables in the program and leaves the rest free.
 
==Details==
 
The basic form of the theorem applies to functions of two arguments (Nies 2009, p.&nbsp;6). Given a Gödel numbering <math>\varphi</math> of recursive functions, there is a [[primitive recursive function]] ''s'' of two arguments with the following property: for every Gödel number ''p'' of a partial computable function ''f'' with two arguments, the expressions <math>\varphi_{s(p,x)}(y)</math> and <math>f(x,y)</math> are defined for the same combinations of natural numbers ''x'' and ''y'', and their values are equal for any such combination. In other words, the following [[extensional equality]] of functions holds for every ''x'':
 
:<math>\varphi_{s(p,x)} \simeq \lambda y.\varphi_p(x,y).\,</math>
 
More generally, for any ''m'',&nbsp;''n''&nbsp;>&nbsp;0, there exists a primitive recursive function <math>s^m_n</math> of ''m''&nbsp;+&nbsp;1 arguments that behaves as follows: for every Gödel number ''p'' of a partial computable function with ''m''&nbsp;+&nbsp;''n'' arguments, and all values of ''x''<sub>1</sub>,…,''x''<sub>''m''</sub>:
 
: <math>\varphi_{s^m_n (p,x_1,\dots,x_m)} \simeq \lambda y_1,\dots,y_n.\varphi_p(x_1,\dots,x_m,y_1,\dots,y_n).\,</math>
 
The function ''s'' described above can be taken to be <math>s^1_1</math>.
 
==Example==
The following [[Lisp programming language|Lisp]] code implements s<sub>11</sub> for Lisp.
<source lang="lisp">
(defun s11 (f x)
  (let ((y (gensym)))
    (list 'lambda (list y) (list f x y))))
</source>
For example, {{code|lang=lisp|(s11 '(lambda (x y) (+ x y)) 3)}} evaluates to {{code|lang=lisp|(lambda (g42) ((lambda (x y) (+ x y)) 3 g42))}}.
 
==See also==
*[[Currying]]
*[[Kleene's recursion theorem]]
*[[Partial evaluation]]
 
==References==
 
* {{cite journal | doi = 10.1007/BF01565439 | author = Kleene, S. C. | title = General recursive functions of natural numbers | journal = Mathematische Annalen | volume = 112 | issue = 1 | pages = 727–742 | year = 1936 |url=http://gdz.sub.uni-goettingen.de/index.php?id=11&PPN=PPN235181684_0112&DMDID=DMDLOG_0043&L=1}}
* {{cite journal| author=Stephen Cole Kleene|authorlink=Stephen Cole Kleene| title=On Notations for Ordinal Numbers| journal=The [[Journal of Symbolic Logic]]| year=1938| volume=3| pages=150-155| url=http://www.thatmarcusfamily.org/philosophy/Course_Websites/Readings/Kleene%20-%20Ordinals.pdf}} (This is the reference that the 1989 edition of Odifreddi's "Classical Recursion Theory" gives on p.131 for the s<sub>mn</sub> theorem.)
* {{cite book | last=Nies | first=André | title=Computability and randomness | series=Oxford Logic Guides | volume=51 | location=Oxford | publisher=Oxford University Press | year=2009 | isbn=978-0-19-923076-1 | zbl=1169.03034 }}
* {{cite book | author = Odifreddi, P. | title = Classical Recursion Theory | publisher = North-Holland| year = 1999| isbn = 0-444-87295-7 }}
* {{cite book | author = Rogers, H. | title = The Theory of Recursive Functions and Effective Computability | publisher = First MIT press paperback edition | year = 1987 | origyear=1967 |isbn = 0-262-68052-1 }}
* {{cite book | author = Soare, R.| title = Recursively enumerable sets and degrees | series = Perspectives in Mathematical Logic | publisher = Springer-Verlag | year = 1987 | isbn = 3-540-15299-7 }}
 
== External links ==
*{{mathworld|urlname=Kleeness-m-nTheorem|title=Kleene's ''s''-''m''-''n'' Theorem}}
 
[[Category:Computability theory]]
[[Category:Theory of computation]]

Revision as of 14:53, 30 July 2013

In computability theory the smn theorem, (also called the translation lemma, parameter theorem, or parameterization theorem) is a basic result about programming languages (and, more generally, Gödel numberings of the computable functions) (Soare 1987, Rogers 1967). It was first proved by Stephen Cole Kleene (Kleene 1943).

In practical terms, the theorem says that for a given programming language and positive integers m and n, there is a particular algorithm that operates on the source code of programs with m + n free variables. This algorithm produces source code that effectively substitutes m given values for the first m free variables in the program and leaves the rest free.

Details

The basic form of the theorem applies to functions of two arguments (Nies 2009, p. 6). Given a Gödel numbering of recursive functions, there is a primitive recursive function s of two arguments with the following property: for every Gödel number p of a partial computable function f with two arguments, the expressions and are defined for the same combinations of natural numbers x and y, and their values are equal for any such combination. In other words, the following extensional equality of functions holds for every x:

More generally, for any mn > 0, there exists a primitive recursive function of m + 1 arguments that behaves as follows: for every Gödel number p of a partial computable function with m + n arguments, and all values of x1,…,xm:

The function s described above can be taken to be .

Example

The following Lisp code implements s11 for Lisp.

 (defun s11 (f x)
   (let ((y (gensym)))
     (list 'lambda (list y) (list f x y))))

For example, Dancer or Choreographer Broadbent from Wrigley, spends time with interests like 4 wheeling, property developers in singapore and aerobics. Likes to see new condos in singapore towns and locales like Vatican City. evaluates to Dancer or Choreographer Broadbent from Wrigley, spends time with interests like 4 wheeling, property developers in singapore and aerobics. Likes to see new condos in singapore towns and locales like Vatican City..

See also

References

  • 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 (This is the reference that the 1989 edition of Odifreddi's "Classical Recursion Theory" gives on p.131 for the smn theorem.)
  • 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
  • 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
  • 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
  • 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

External links

  • 22 year-old Systems Analyst Rave from Merrickville-Wolford, has lots of hobbies and interests including quick cars, property developers in singapore and baking. Always loves visiting spots like Historic Monuments Zone of Querétaro.

    Here is my web site - cottagehillchurch.com