subsequence

{{Short description|Mathematical binary relation}}

{{Multiple issues|

{{more footnotes|date=November 2018}}

{{more citations needed|date=November 2018}}

}}

In mathematics, a subsequence of a given sequence is a sequence that can be derived from the given sequence by deleting some or no elements without changing the order of the remaining elements. For example, the sequence \langle A,B,D \rangle is a subsequence of \langle A,B,C,D,E,F \rangle obtained after removal of elements C, E, and F. The relation of one sequence being the subsequence of another is a partial order.

Subsequences can contain consecutive elements which were not consecutive in the original sequence. A subsequence which consists of a consecutive run of elements from the original sequence, such as \langle B,C,D \rangle, from \langle A,B,C,D,E,F \rangle, is a substring. The substring is a refinement of the subsequence.

The list of all subsequences for the word "apple" would be "a", "ap", "al", "ae", "app", "apl", "ape", "ale", "appl", "appe", "aple", "apple", "p", "pp", "pl", "pe", "ppl", "ppe", "ple", "pple", "l", "le", "e", "" (empty string).

Common subsequence

Given two sequences X and Y, a sequence Z is said to be a common subsequence of X and Y, if Z is a subsequence of both X and Y. For example, if

X = \langle A,C,B,D,E,G,C,E,D,B,G \rangle \qquad \text{ and}

Y = \langle B,E,G,J,C,F,E,K,B \rangle \qquad \text{ and}

Z = \langle B,E,E \rangle.

then Z is said to be a common subsequence of X and Y.

This would {{em|not}} be the longest common subsequence, since Z only has length 3, and the common subsequence \langle B,E,E,B \rangle has length 4. The longest common subsequence of X and Y is \langle B,E,G,C,E,B \rangle.

Applications

Subsequences have applications to computer science,In computer science, string is often used as a synonym for sequence, but it is important to note that substring and subsequence are not synonyms. Substrings are consecutive parts of a string, while subsequences need not be. This means that a substring of a string is always a subsequence of the string, but a subsequence of a string is not always a substring of the string, see: {{cite book | last = Gusfield | first = Dan | orig-year = 1997 | year = 1999 | title = Algorithms on Strings, Trees and Sequences: Computer Science and Computational Biology | publisher = Cambridge University Press | location = USA | isbn = 0-521-58519-8 | pages = 4}} especially in the discipline of bioinformatics, where computers are used to compare, analyze, and store DNA, RNA, and protein sequences.

Take two sequences of DNA containing 37 elements, say:

:SEQ1 = ACGGTGTCGTGCTATGCTGATGCTGACTTATATGCTA

:SEQ2 = CGTTCGGCTATCGTACGTTCTATTCTATGATTTCTAA

The longest common subsequence of sequences 1 and 2 is:

:LCS(SEQ1,SEQ2) = CGTTCGGCTATGCTTCTACTTATTCTA

This can be illustrated by highlighting the 27 elements of the longest common subsequence into the initial sequences:

:SEQ1 = A{{font color|red|CG}}G{{font color|red|T}}G{{font color|red|TCG}}T{{font color|red|GCTATGCT}}GA{{font color|red|T}}G{{font color|red|CT}}G{{font color|red|ACTTAT}}A{{font color|red|T}}G{{font color|red|CTA}}

:SEQ2 = {{font color|red|CGTTCGGCTAT}}C{{font color|red|G}}TA{{font color|red|C}}G{{font color|red|TTCTA}}TT{{font color|red|CT}}A{{font color|red|T}}G{{font color|red|ATT}}T{{font color|red|CTA}}A

Another way to show this is to align the two sequences, that is, to position elements of the longest common subsequence in a same column (indicated by the vertical bar) and to introduce a special character (here, a dash) for padding of arisen empty subsequences:

:SEQ1 = ACGGTGTCGTGCTAT-G--C-TGATGCTGA--CT-T-ATATG-CTA-

:        | || ||| ||||| |  | |  | || |  || | || |  |||

:SEQ2 = -C-GT-TCG-GCTATCGTACGT--T-CT-ATTCTATGAT-T-TCTAA

Subsequences are used to determine how similar the two strands of DNA are, using the DNA bases: adenine, guanine, cytosine and thymine.

Theorems

See also

  • {{annotated link|Subsequential limit}}
  • {{annotated link|Limit superior and limit inferior}}
  • {{annotated link|Longest increasing subsequence problem}}

Notes

{{reflist}}

{{reflist|group=note}}

{{PlanetMath attribution|id=3300|title=subsequence}}

Category:Elementary mathematics

Category:Sequences and series