Papyrus 40: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Leszek Jańczuk
 
en>Leszek Jańczuk
interwiki
Line 1: Line 1:
Next - GEN Gallery is a full incorporated Image Gallery plugin for Word - Press which has a Flash slideshow option. Good luck on continue learning how to make a wordpress website. Change the site's theme and you have essentially changed the site's personality. If you need a special plugin for your website , there are thousands of plugins that can be used to meet those needs. In the most current edition you can customize your retailer layout and display hues and fonts similar to your site or blog. <br><br>
In theoretical computer science, '''closest string''' is the name of an [[NP-hard]] computational problem,<ref name="llmwz">{{citation
| last1 = Lanctot | first1 = J. Kevin
| last2 = Li | first2 = Ming
| last3 = Ma | first3 = Bin
| last4 = Wang | first4 = Shaojiu
| last5 = Zhang | first5 = Louxin
| doi = 10.1016/S0890-5401(03)00057-9
| issue = 1
| journal = Information and Computation
| mr = 1994748
| pages = 41–55
| title = Distinguishing string selection problems
| volume = 185
| year = 2003}}</ref> which tries to find the geometrical center of a set of input strings.


Creating a website from scratch can be such a pain. Infertility can cause a major setback to the couples due to the inability to conceive. Several claim that Wordpress just isn't an preferred tool to utilise when developing a professional site. Now, I want to anxiety that not every single query will be answered. For a Wordpress website, you don't need a powerful web hosting account to host your site. <br><br>The entrepreneurs can easily captivate their readers by using these versatile themes. Browse through the popular Wordpress theme clubs like the Elegant Themes, Studio Press, Woo - Themes, Rocket Theme, Simple Themes and many more. You've got invested a great cope of time developing and producing up the topic substance. Newer programs allow website owners and internet marketers to automatically and dynamically change words in their content to match the keywords entered by their web visitors in their search queries'a feat that they cannot easily achieve with older software. Premium vs Customised Word - Press Themes - Premium themes are a lot like customised themes but without the customised price and without the wait. <br><br>If all else fails, please leave a comment on this post with the issue(s) you're having and help will be on the way. As an example, if you are promoting a product that cures hair-loss, you most likely would not wish to target your adverts to teens. Exacting subjects in reality must be accumulated in head ahead of planning on your high quality theme. Can you imagine where you would be now if someone in your family bought an original painting from van Gogh during his lifetime. Wordpress template is loaded with lots of prototype that unite graphic features and content area. <br><br>Yet, overall, less than 1% of websites presently have mobile versions of their websites. As a website owner, you can easily manage CMS-based website in a pretty easy and convenient style. This allows updates to be sent anyone who wants them via an RSS reader or directly to their email. If you have any questions regarding where by and how to use [http://www.nycgovparks.org/exit?url=https://wordpress.org/plugins/ready-backup/ wordpress backup], you can call us at our own webpage. It is a fact that Smartphone using online customers do not waste much of their time in struggling with drop down menus. The 2010 voting took place from July 7 through August 31, 2010.
To understand the word "center" it is necessary to define a distance between two strings. Usually, this problem is studied with the [[Hamming distance]] in mind.
 
==Formal definition==
More formally, given ''n'' length-''m'' strings ''s''<sub>1</sub>, ''s''<sub>2</sub>, ..., ''s''<sub>''n''</sub>, the closest string problem seeks for a new length-''m'' string ''s'' such that ''d''(''s'',''s''<sub>''i''</sub>) ≤ ''k'' for all ''i'', where ''d'' denotes the [[Hamming distance]], and where ''k'' is as small as possible.<ref>{{citation| title=More Efficient Algorithms for Closest String and Substring Problems| authors=Bin Ma and Xiaming Sun,|url= http://www.springerlink.com/content/f0087236k70043j2| url=http://www.csd.uwo.ca/~bma/CS873/recomb2008.pdf| year=2008| booktitle=Proc. 12th Ann. Int. Conf. on Research in Computational Molecular Biology (RECOMB)| publisher=Springer |series= LNCS |volume=4955| pages= 396-409}}</ref> A [[decision problem]] version of the closest string problem, which is [[NP-complete]], instead takes ''k'' as another input and asks for any string that is within Hamming distance ''k'' of all the input strings.<ref name="llmwz"/>
 
The closest string problem can be seen as an instance of the [[1-center problem]] in which the distances between elements are measured using Hamming distance.
 
==Motivation==
In [[bioinformatics]], the closest string problem is an intensively studied facet of the problem of finding signals in [[DNA]].
 
==Simplifications and data reductions==
Instances of closest string may contain information that is not essential to the problem. In some sense, the usual input of closest string contains information, that does not contribute to the hardness of the problem. For example, if some strings contain the character ''a'', but none contains the character ''z'', replacing all ''a''s with ''z''s  would yield an essentially equivalent instance, that is: from a solution of the modified instance, the original solution can be restored, and vice versa.
 
===Normalizing the input===
When all input strings that share the same length are written on top of each other, they form a matrix. Certain row types have essentially the same implications to the solution. For example, replacing a column with entries (''a'',''a'',''b'') with another column (''x'',''x'',''y'') might lead to a different solution string, but cannot affect solvability, because both columns express the same structure, viz. the first two entries being equal, but different from the third one.
 
An input instance can be ''normalized'' by replacing, in each column, the character that occurs the most often with ''a'', the character that occurs the second most often with ''b'', and so forth. Given a solution to the normalized instance, the original instance can be found by remapping the characters of the solution to its original version in every column.
 
The order of the columns does not contribute to the hardness of the problem. That means, if we permute all input strings according to a certain permutation π and obtain a solution string ''s'' to that modified instance, then π<sup>-1</sup>(''s'') will be a solution to the original instance.
 
====Example====
[[File:Closest-string problem example svg.svg|thumb|Search space for the normalized problem. The center string ''aaaa'' and ''aaab'' leads to Hamming distances 1,2,1 and 2,1,1, respectively.]]
Given an instance with three input strings ''uvwx'', ''xuwv'', and ''xvwu''. This could be written as a matrix like this:
 
{|
|-
| ''u'' || ''v'' || ''w'' || ''x''
|-
| ''x'' || ''u'' || ''w'' || ''v''
|-
| ''x'' || ''v'' || ''w'' || ''u''
|}
 
The first column has the values (''u'',''x'',''x''). As ''x'' is the character that appears the most often, we replace it by ''a'', and we replace ''u'', the second most often character, by ''b'', obtaining the new first column (''b'',''a'',''a''). Doing the same with all columns gives the normalized instance
 
{|
|-
| ''b'' || ''a'' || ''a'' || ''a''
|-
| ''a'' || ''b'' || ''a'' || ''b''
|-
| ''a'' || ''a'' || ''a'' || ''c''
|}
 
====Data reduction obtained from normalization====
Normalizing the input reduces the alphabet size to at most the number of input strings. This can be useful for algorithms whose running times depend on the alphabet size.
 
==Approximability==
Li et al. evolved a [[polynomial-time approximation scheme]]<ref>{{citation| authors=M. Li, B. Ma, and L. Wang. |title=On the Closest String and Substring Problems.|journal= Journal of the ACM| volume=49|issue=2|pages=157-171|year=2002|url=http://www.cs.cityu.edu.hk/~lwang/research/jacm02.pdf}}</ref> which is practically unusable because of the large hidden constants.
 
==Fixed-parameter tractability==
Closest String can be solved in <math>O(kL+kd\cdot d^d)</math>, where ''k'' is the number of input strings, ''L'' is the length of all strings and ''d'' is the desired maximum distance from the solution string to any input string.<ref>{{citation|title=Fixed-Parameter Algorithms for Closest String and Related Problems|authors=Jens Gramm, Rolf Niedermeier, and Peter Rossmanith|journal=Algorithmica |year=2003| volume=37|pages=25–42| url=http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.61.736}}</ref>
 
==Relations to other problems==
Closest string is a special case of the more general [[closest substring]] problem, which is strictly more difficult. While closest string turns out to be [[fixed-parameter tractable]] in a number of ways, closest substring is [[Parameterized complexity#W hierarchy|W[1]-hard]] with regard to these parameters.
 
==References==
<references/>
 
[[Category:NP-complete problems]]
[[Category:Formal languages]]

Revision as of 23:21, 26 February 2013

In theoretical computer science, closest string is the name of an NP-hard computational problem,[1] which tries to find the geometrical center of a set of input strings.

To understand the word "center" it is necessary to define a distance between two strings. Usually, this problem is studied with the Hamming distance in mind.

Formal definition

More formally, given n length-m strings s1, s2, ..., sn, the closest string problem seeks for a new length-m string s such that d(s,si) ≤ k for all i, where d denotes the Hamming distance, and where k is as small as possible.[2] A decision problem version of the closest string problem, which is NP-complete, instead takes k as another input and asks for any string that is within Hamming distance k of all the input strings.[1]

The closest string problem can be seen as an instance of the 1-center problem in which the distances between elements are measured using Hamming distance.

Motivation

In bioinformatics, the closest string problem is an intensively studied facet of the problem of finding signals in DNA.

Simplifications and data reductions

Instances of closest string may contain information that is not essential to the problem. In some sense, the usual input of closest string contains information, that does not contribute to the hardness of the problem. For example, if some strings contain the character a, but none contains the character z, replacing all as with zs would yield an essentially equivalent instance, that is: from a solution of the modified instance, the original solution can be restored, and vice versa.

Normalizing the input

When all input strings that share the same length are written on top of each other, they form a matrix. Certain row types have essentially the same implications to the solution. For example, replacing a column with entries (a,a,b) with another column (x,x,y) might lead to a different solution string, but cannot affect solvability, because both columns express the same structure, viz. the first two entries being equal, but different from the third one.

An input instance can be normalized by replacing, in each column, the character that occurs the most often with a, the character that occurs the second most often with b, and so forth. Given a solution to the normalized instance, the original instance can be found by remapping the characters of the solution to its original version in every column.

The order of the columns does not contribute to the hardness of the problem. That means, if we permute all input strings according to a certain permutation π and obtain a solution string s to that modified instance, then π-1(s) will be a solution to the original instance.

Example

Search space for the normalized problem. The center string aaaa and aaab leads to Hamming distances 1,2,1 and 2,1,1, respectively.

Given an instance with three input strings uvwx, xuwv, and xvwu. This could be written as a matrix like this:

u v w x
x u w v
x v w u

The first column has the values (u,x,x). As x is the character that appears the most often, we replace it by a, and we replace u, the second most often character, by b, obtaining the new first column (b,a,a). Doing the same with all columns gives the normalized instance

b a a a
a b a b
a a a c

Data reduction obtained from normalization

Normalizing the input reduces the alphabet size to at most the number of input strings. This can be useful for algorithms whose running times depend on the alphabet size.

Approximability

Li et al. evolved a polynomial-time approximation scheme[3] which is practically unusable because of the large hidden constants.

Fixed-parameter tractability

Closest String can be solved in , where k is the number of input strings, L is the length of all strings and d is the desired maximum distance from the solution string to any input string.[4]

Relations to other problems

Closest string is a special case of the more general closest substring problem, which is strictly more difficult. While closest string turns out to be fixed-parameter tractable in a number of ways, closest substring is W[1]-hard with regard to these parameters.

References

  1. 1.0 1.1 Many property agents need to declare for the PIC grant in Singapore. However, not all of them know find out how to do the correct process for getting this PIC scheme from the IRAS. There are a number of steps that you need to do before your software can be approved.

    Naturally, you will have to pay a safety deposit and that is usually one month rent for annually of the settlement. That is the place your good religion deposit will likely be taken into account and will kind part or all of your security deposit. Anticipate to have a proportionate amount deducted out of your deposit if something is discovered to be damaged if you move out. It's best to you'll want to test the inventory drawn up by the owner, which can detail all objects in the property and their condition. If you happen to fail to notice any harm not already mentioned within the inventory before transferring in, you danger having to pay for it yourself.

    In case you are in search of an actual estate or Singapore property agent on-line, you simply should belief your intuition. It's because you do not know which agent is nice and which agent will not be. Carry out research on several brokers by looking out the internet. As soon as if you end up positive that a selected agent is dependable and reliable, you can choose to utilize his partnerise in finding you a home in Singapore. Most of the time, a property agent is taken into account to be good if he or she locations the contact data on his website. This may mean that the agent does not mind you calling them and asking them any questions relating to new properties in singapore in Singapore. After chatting with them you too can see them in their office after taking an appointment.

    Have handed an trade examination i.e Widespread Examination for House Brokers (CEHA) or Actual Property Agency (REA) examination, or equal; Exclusive brokers are extra keen to share listing information thus making certain the widest doable coverage inside the real estate community via Multiple Listings and Networking. Accepting a severe provide is simpler since your agent is totally conscious of all advertising activity related with your property. This reduces your having to check with a number of agents for some other offers. Price control is easily achieved. Paint work in good restore-discuss with your Property Marketing consultant if main works are still to be done. Softening in residential property prices proceed, led by 2.8 per cent decline within the index for Remainder of Central Region

    Once you place down the one per cent choice price to carry down a non-public property, it's important to accept its situation as it is whenever you move in – faulty air-con, choked rest room and all. Get round this by asking your agent to incorporate a ultimate inspection clause within the possibility-to-buy letter. HDB flat patrons routinely take pleasure in this security net. "There's a ultimate inspection of the property two days before the completion of all HDB transactions. If the air-con is defective, you can request the seller to repair it," says Kelvin.

    15.6.1 As the agent is an intermediary, generally, as soon as the principal and third party are introduced right into a contractual relationship, the agent drops out of the image, subject to any problems with remuneration or indemnification that he could have against the principal, and extra exceptionally, against the third occasion. Generally, agents are entitled to be indemnified for all liabilities reasonably incurred within the execution of the brokers´ authority.

    To achieve the very best outcomes, you must be always updated on market situations, including past transaction information and reliable projections. You could review and examine comparable homes that are currently available in the market, especially these which have been sold or not bought up to now six months. You'll be able to see a pattern of such report by clicking here It's essential to defend yourself in opposition to unscrupulous patrons. They are often very skilled in using highly unethical and manipulative techniques to try and lure you into a lure. That you must also protect your self, your loved ones, and personal belongings as you'll be serving many strangers in your home. Sign a listing itemizing of all of the objects provided by the proprietor, together with their situation. HSR Prime Recruiter 2010
  2. Many property agents need to declare for the PIC grant in Singapore. However, not all of them know find out how to do the correct process for getting this PIC scheme from the IRAS. There are a number of steps that you need to do before your software can be approved.

    Naturally, you will have to pay a safety deposit and that is usually one month rent for annually of the settlement. That is the place your good religion deposit will likely be taken into account and will kind part or all of your security deposit. Anticipate to have a proportionate amount deducted out of your deposit if something is discovered to be damaged if you move out. It's best to you'll want to test the inventory drawn up by the owner, which can detail all objects in the property and their condition. If you happen to fail to notice any harm not already mentioned within the inventory before transferring in, you danger having to pay for it yourself.

    In case you are in search of an actual estate or Singapore property agent on-line, you simply should belief your intuition. It's because you do not know which agent is nice and which agent will not be. Carry out research on several brokers by looking out the internet. As soon as if you end up positive that a selected agent is dependable and reliable, you can choose to utilize his partnerise in finding you a home in Singapore. Most of the time, a property agent is taken into account to be good if he or she locations the contact data on his website. This may mean that the agent does not mind you calling them and asking them any questions relating to new properties in singapore in Singapore. After chatting with them you too can see them in their office after taking an appointment.

    Have handed an trade examination i.e Widespread Examination for House Brokers (CEHA) or Actual Property Agency (REA) examination, or equal; Exclusive brokers are extra keen to share listing information thus making certain the widest doable coverage inside the real estate community via Multiple Listings and Networking. Accepting a severe provide is simpler since your agent is totally conscious of all advertising activity related with your property. This reduces your having to check with a number of agents for some other offers. Price control is easily achieved. Paint work in good restore-discuss with your Property Marketing consultant if main works are still to be done. Softening in residential property prices proceed, led by 2.8 per cent decline within the index for Remainder of Central Region

    Once you place down the one per cent choice price to carry down a non-public property, it's important to accept its situation as it is whenever you move in – faulty air-con, choked rest room and all. Get round this by asking your agent to incorporate a ultimate inspection clause within the possibility-to-buy letter. HDB flat patrons routinely take pleasure in this security net. "There's a ultimate inspection of the property two days before the completion of all HDB transactions. If the air-con is defective, you can request the seller to repair it," says Kelvin.

    15.6.1 As the agent is an intermediary, generally, as soon as the principal and third party are introduced right into a contractual relationship, the agent drops out of the image, subject to any problems with remuneration or indemnification that he could have against the principal, and extra exceptionally, against the third occasion. Generally, agents are entitled to be indemnified for all liabilities reasonably incurred within the execution of the brokers´ authority.

    To achieve the very best outcomes, you must be always updated on market situations, including past transaction information and reliable projections. You could review and examine comparable homes that are currently available in the market, especially these which have been sold or not bought up to now six months. You'll be able to see a pattern of such report by clicking here It's essential to defend yourself in opposition to unscrupulous patrons. They are often very skilled in using highly unethical and manipulative techniques to try and lure you into a lure. That you must also protect your self, your loved ones, and personal belongings as you'll be serving many strangers in your home. Sign a listing itemizing of all of the objects provided by the proprietor, together with their situation. HSR Prime Recruiter 2010
  3. Many property agents need to declare for the PIC grant in Singapore. However, not all of them know find out how to do the correct process for getting this PIC scheme from the IRAS. There are a number of steps that you need to do before your software can be approved.

    Naturally, you will have to pay a safety deposit and that is usually one month rent for annually of the settlement. That is the place your good religion deposit will likely be taken into account and will kind part or all of your security deposit. Anticipate to have a proportionate amount deducted out of your deposit if something is discovered to be damaged if you move out. It's best to you'll want to test the inventory drawn up by the owner, which can detail all objects in the property and their condition. If you happen to fail to notice any harm not already mentioned within the inventory before transferring in, you danger having to pay for it yourself.

    In case you are in search of an actual estate or Singapore property agent on-line, you simply should belief your intuition. It's because you do not know which agent is nice and which agent will not be. Carry out research on several brokers by looking out the internet. As soon as if you end up positive that a selected agent is dependable and reliable, you can choose to utilize his partnerise in finding you a home in Singapore. Most of the time, a property agent is taken into account to be good if he or she locations the contact data on his website. This may mean that the agent does not mind you calling them and asking them any questions relating to new properties in singapore in Singapore. After chatting with them you too can see them in their office after taking an appointment.

    Have handed an trade examination i.e Widespread Examination for House Brokers (CEHA) or Actual Property Agency (REA) examination, or equal; Exclusive brokers are extra keen to share listing information thus making certain the widest doable coverage inside the real estate community via Multiple Listings and Networking. Accepting a severe provide is simpler since your agent is totally conscious of all advertising activity related with your property. This reduces your having to check with a number of agents for some other offers. Price control is easily achieved. Paint work in good restore-discuss with your Property Marketing consultant if main works are still to be done. Softening in residential property prices proceed, led by 2.8 per cent decline within the index for Remainder of Central Region

    Once you place down the one per cent choice price to carry down a non-public property, it's important to accept its situation as it is whenever you move in – faulty air-con, choked rest room and all. Get round this by asking your agent to incorporate a ultimate inspection clause within the possibility-to-buy letter. HDB flat patrons routinely take pleasure in this security net. "There's a ultimate inspection of the property two days before the completion of all HDB transactions. If the air-con is defective, you can request the seller to repair it," says Kelvin.

    15.6.1 As the agent is an intermediary, generally, as soon as the principal and third party are introduced right into a contractual relationship, the agent drops out of the image, subject to any problems with remuneration or indemnification that he could have against the principal, and extra exceptionally, against the third occasion. Generally, agents are entitled to be indemnified for all liabilities reasonably incurred within the execution of the brokers´ authority.

    To achieve the very best outcomes, you must be always updated on market situations, including past transaction information and reliable projections. You could review and examine comparable homes that are currently available in the market, especially these which have been sold or not bought up to now six months. You'll be able to see a pattern of such report by clicking here It's essential to defend yourself in opposition to unscrupulous patrons. They are often very skilled in using highly unethical and manipulative techniques to try and lure you into a lure. That you must also protect your self, your loved ones, and personal belongings as you'll be serving many strangers in your home. Sign a listing itemizing of all of the objects provided by the proprietor, together with their situation. HSR Prime Recruiter 2010
  4. Many property agents need to declare for the PIC grant in Singapore. However, not all of them know find out how to do the correct process for getting this PIC scheme from the IRAS. There are a number of steps that you need to do before your software can be approved.

    Naturally, you will have to pay a safety deposit and that is usually one month rent for annually of the settlement. That is the place your good religion deposit will likely be taken into account and will kind part or all of your security deposit. Anticipate to have a proportionate amount deducted out of your deposit if something is discovered to be damaged if you move out. It's best to you'll want to test the inventory drawn up by the owner, which can detail all objects in the property and their condition. If you happen to fail to notice any harm not already mentioned within the inventory before transferring in, you danger having to pay for it yourself.

    In case you are in search of an actual estate or Singapore property agent on-line, you simply should belief your intuition. It's because you do not know which agent is nice and which agent will not be. Carry out research on several brokers by looking out the internet. As soon as if you end up positive that a selected agent is dependable and reliable, you can choose to utilize his partnerise in finding you a home in Singapore. Most of the time, a property agent is taken into account to be good if he or she locations the contact data on his website. This may mean that the agent does not mind you calling them and asking them any questions relating to new properties in singapore in Singapore. After chatting with them you too can see them in their office after taking an appointment.

    Have handed an trade examination i.e Widespread Examination for House Brokers (CEHA) or Actual Property Agency (REA) examination, or equal; Exclusive brokers are extra keen to share listing information thus making certain the widest doable coverage inside the real estate community via Multiple Listings and Networking. Accepting a severe provide is simpler since your agent is totally conscious of all advertising activity related with your property. This reduces your having to check with a number of agents for some other offers. Price control is easily achieved. Paint work in good restore-discuss with your Property Marketing consultant if main works are still to be done. Softening in residential property prices proceed, led by 2.8 per cent decline within the index for Remainder of Central Region

    Once you place down the one per cent choice price to carry down a non-public property, it's important to accept its situation as it is whenever you move in – faulty air-con, choked rest room and all. Get round this by asking your agent to incorporate a ultimate inspection clause within the possibility-to-buy letter. HDB flat patrons routinely take pleasure in this security net. "There's a ultimate inspection of the property two days before the completion of all HDB transactions. If the air-con is defective, you can request the seller to repair it," says Kelvin.

    15.6.1 As the agent is an intermediary, generally, as soon as the principal and third party are introduced right into a contractual relationship, the agent drops out of the image, subject to any problems with remuneration or indemnification that he could have against the principal, and extra exceptionally, against the third occasion. Generally, agents are entitled to be indemnified for all liabilities reasonably incurred within the execution of the brokers´ authority.

    To achieve the very best outcomes, you must be always updated on market situations, including past transaction information and reliable projections. You could review and examine comparable homes that are currently available in the market, especially these which have been sold or not bought up to now six months. You'll be able to see a pattern of such report by clicking here It's essential to defend yourself in opposition to unscrupulous patrons. They are often very skilled in using highly unethical and manipulative techniques to try and lure you into a lure. That you must also protect your self, your loved ones, and personal belongings as you'll be serving many strangers in your home. Sign a listing itemizing of all of the objects provided by the proprietor, together with their situation. HSR Prime Recruiter 2010