Find the least $n$ such that $1.001^n \geq n^{100}$.
There are other interesting models of computation. A nondeterministic Turing machine is similar to a deterministic Turing machine, but we eliminate the requirement that at every step of the computation, the machine proceeds to exactly one subsequent step. In other words, for a given $q \in Q$ and a $\sigma \in \Sigma$, the machine can enter into a subset (possibly empty) of $Q \times \Sigma \times\{L, R\}$. Formally, a nondeterministic Turing machine $M$ is a 6-tuple
$$
M=\left(Q, \Sigma, q_{\text {start }}, q_{\text {accept }}, q_{\text {reject }}, \delta\right),
$$
where $Q, \Sigma, q_{\text {start }}, q_{\text {accept }}, q_{\text {reject }}$ are as before and $\delta$ is a function
$$
\delta: Q \times \Sigma \longrightarrow \wp(Q \times \Sigma \times\{L, R\})
$$
where $\wp$ is the powerset function. For a given $q \in Q$ and $\sigma \in \Sigma$ if $\left(q^{\prime}, \sigma^{\prime}, D\right) \in$ $\delta(q, \sigma)$, we mean that
If Turing machine $M$ is in state $q$ and the eye encounters symbol $\sigma$, then one of the actions that the machine could perform is to exchange symbol $\sigma$ for $\sigma^{\prime}$, move one box in the direction $D \in\{L, R\}$, and enter state $q^{\prime} \in Q$.
Just as we rewrote function (8.2), we might also rewrite function (8.11) as
$$
\bar{\delta}: Q \times \Sigma \longrightarrow\{0,1\}^{Q \times \Sigma \times\{L, R\}}
$$
where $\{0,1\}^{Q \times \Sigma \times\{L, R\}}$ is the set of functions from $Q \times \Sigma \times\{L, R\}$ to $\{0,1\}$. Whereas $\delta$ in function (8.11) chooses a subset of $Q \times \Sigma \times\{L, R\}, \bar{\delta}$ in function (8.12) chooses the characteristic function of the same subset. We may write this $\bar{\delta}$ similar to function $(8.3)$ :
$$
\delta^{\prime}: Q \times \Sigma \times Q \times \Sigma \times\{L, R\} \longrightarrow\{0,1\}
$$
but this time we do not insist on the requirement that $\delta^{\prime}$ must satisfy Equation (8.5). In other words,
$$
(\forall q \in Q)(\forall \sigma \in \Sigma) \sum_{q^{\prime} \in Q, \sigma^{\prime} \in \Sigma, D \in\{L, R\}} \delta^{\prime}\left(q, \sigma, q^{\prime}, \sigma^{\prime}, D\right)=0 \text {, or } 1 \text {, or } 2 \text {, or } \ldots, \text { or } n .
$$
The largest $n$ is $|Q \times \Sigma \times\{L, R\}|$.