Skip to main content
Logo image

Applied Combinatorics

Section 2.1 Strings: A First Look

Let \(n\) be a positive integer. Throughout this text, we will use the shorthand notation \([n]\) to denote the \(n\)-element set \(\{1,2,\dots,n\}\text{.}\) Now let \(X\) be a set. Then a function \(s\colon[n]\rightarrow X\) is also called an \(X\)-string of length \(n\). In discussions of \(X\)-strings, it is customary to refer to the elements of \(X\) as characters, while the element \(s(i)\) is the \(i^{\text{th} }\) character of \(s\text{.}\) Whenever practical, we prefer to denote a string \(s\) by writing \(s=\)\(x_1x_2x_3\dots x_n\)”, rather than the more cumbersome notation \(s(1)=x_1\text{,}\) \(s(2)=x_2\text{,}\) …, \(s(n)=x_n\text{.}\)
There are a number of alternatives for the notation and terminology associated with strings. First, the characters in a string \(s\) are frequently written using subscripts as \(s_1,s_2,\dots,s_n\text{,}\) so the \(i^{\text{th} }\)-term of \(s\) can be denoted \(s_i\) rather than \(s(i)\text{.}\) Strings are also called sequences, especially when \(X\) is a set of numbers and the function \(s\) is defined by an algebraic rule. For example, the sequence of odd integers is defined by \(s_i=2i-1\text{.}\)
Alternatively, strings are called words, the set \(X\) is called the alphabet and the elements of \(X\) are called letters. For example, \(aababbccabcbb\) is a \(13\)-letter word on the \(3\)-letter alphabet \(\{a,b,c\}\text{.}\)
In many computing languages, strings are called arrays. Also, when the character \(s(i)\) is constrained to belong to a subset \(X_i\subseteq X\text{,}\) a string can be considered as an element of the cartesian product \(X_1\times X_2\times \dots\times X_n\text{,}\) which is normally viewed as \(n\)-tuples of the form \((x_1,x_2,\dots,x_n)\) such that \(x_i\in X_i\) for all \(i\in [n]\text{.}\)

Example 2.1.

In the state of Georgia, license plates consist of four digits followed by a space followed by three capital letters. The first digit cannot be a \(0\text{.}\) How many license plates are possible?
Solution.
Let \(X\) consist of the digits \(\{0,1,2,\dots,9\}\text{,}\) let \(Y\) be the singleton set whose only element is a space, and let \(Z\) denote the set of capital letters. A valid license plate is just a string from
\begin{equation*} (X-\{0\})\times X\times X\times X\times Y\times Z\times Z\times Z \end{equation*}
so the number of different license plates is \(9\times10^3\times1\times 26^3=158\,184\,000\text{,}\) since the size of a product of sets is the product of the sets’ sizes. We can get a feel for why this is the case by focusing just on the digit part of the string here. We can think about the digits portion as being four blanks that need to be filled. The first blank has \(9\) options (the digits \(1\) through \(9\)). If we focus on just the digit strings beginning with \(1\text{,}\) one perspective is that they range from \(1000\) to \(1999\text{,}\) so there are \(1000\) of them. However, we could also think about there being \(10\) options for the second spot, \(10\) options for the third spot, and \(10\) options for the fourth. Multiplying \(10\times 10\times 10\) gives \(1000\text{.}\) Since our analysis of filling the remaining digit blanks didn’t depend on our choice of a \(1\) for the first position, we see that each of the \(9\) choices of initial digit gives \(1\, 000\) strings, for a total of \(9\,000 = 9\times 10^3\text{.}\)
In the case that \(X=\{0,1\}\text{,}\) an \(X\)-string is called a \(0\)\(1\) string (also a binary string or bit string.). When \(X=\{0,1,2\}\text{,}\) an \(X\)-string is also called a ternary string.

Example 2.2.

A machine instruction in a \(32\)-bit operating system is just a bit string of length \(32\text{.}\) Thus, there are \(2\) options for each of \(32\) positions to fill, making the number of such strings \(2^{32} = 4\,294\,967\,296\text{.}\) In general, the number of bit strings of length \(n\) is \(2^n\text{.}\)

Example 2.3.

Suppose that a website allows its users to pick their own usernames for accounts, but imposes some restrictions. The first character must be an upper-case letter in the English alphabet. The second through sixth characters can be letters (both upper-case and lower-case allowed) in the English alphabet or decimal digits (\(0\)\(9\)). The seventh position must be ‘@’ or ‘.’. The eighth through twelfth positions allow lower-case English letters, ‘*’, ‘%’, and ‘#’. The thirteenth position must be a digit. How many users can the website accept registrations from?
Solution.
We can visualize the options by thinking of the \(13\) positions in the string as blanks that need to be filled in and putting the options for that blank above. In Figure 2.4, we’ve used U to denote the set of upper-case letters, L for the set of lower-case letters, and D for the set of digits.
# # # # #
D D D D D % % % % %
L L L L L . * * * * *
U U U U U U @ L L L L L D
26 62 62 62 62 62 2 29 29 29 29 29 10
Figure 2.4. String Template
Below each position in the string, we’ve written the number of options for that position. (For example, there are 62 options for the second position, since there are \(52\) letters once both cases are accounted for and \(10\) digits.) We then multiply these possibilities together, since each choice is independent of the others. Therefore, we have
\begin{equation*} 26\times 62^5 \times 2 \times 29^5\times 10 = 9\,771\,287\,250\,890\,863\,360 \end{equation*}
total possible usernames.

Reading Questions Reading Questions

1.

Suppose we are forming strings of length four. The first and second characters in the string will be uppercase English letters. The third character in the string will be a digit (\(0\)\(9\)), and the fourth character in the string will be a lowercase English consonant. How many strings meet these criteria? Explain your reasoning, and it would be better if you expressed your answer as a product of numbers rather than giving only a final numerical answer.
You have attempted of activities on this page.