Skip to content

Commit 80e35dc

Browse files
committed
MATH 239: various factual corrections
1 parent d23c9bd commit 80e35dc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

math239.tex

+5-5
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@
896896
\end{ex}
897897

898898
\begin{defn}
899-
The \textbf{golden ratio} is a pair of integers $a$ and $b$ such that $\frac{a + b}{a} = {a}{b}$. It's a ratio that comes up in nature a lot, and is aesthetically pleasing.
899+
The \textbf{golden ratio} is a pair of integers $a$ and $b$ such that $\frac{a + b}{a} = \frac{a}{b}$. It's a ratio that comes up in nature a lot, and is aesthetically pleasing.
900900
\end{defn}
901901

902902
You can approximate the golden ratio with the Fibonacci numbers. $\frac{a_n}{a_{n - 1}}$ approaches the golden ratio as $n \to \infty$.
@@ -1132,7 +1132,7 @@
11321132
\subsubsection{Recursive String Definitions}
11331133
There's another way of constructing binary strings: recursive definitions.
11341134
\begin{ex} \lecture{February 1, 2013}
1135-
Let $S$ be the set of all binary strings. We can define $S$ recursively as $S = \set{\epsilon } \cup \set{0, 1}$. Whenever you write an expression like this, you should take great care to ensure that both sides are actually equal.
1135+
Let $S$ be the set of all binary strings. We can define $S$ recursively as $S = \set{\epsilon } \cup \set{0, 1} S$. Whenever you write an expression like this, you should take great care to ensure that both sides are actually equal.
11361136
\\ \\
11371137
One might attempt to describe $S$ as $\set{\epsilon, 0, 1 }S$, however that is ambiguous. $S = \set{\epsilon } \cup \set{0, 1 } S$ is unambiguous. Since there are two terms of length 1, applying the sum \& product lemmas, we get:
11381138
\begin{align*}
@@ -1450,7 +1450,7 @@
14501450
\\ \\
14511451
We have:
14521452
\begin{align*}
1453-
p(x) &= x^2 + 3x^2 - 4 \\
1453+
p(x) &= x^3 + 3x^2 - 4 \\
14541454
&= (x + 2)^2 (x - 1)
14551455
\end{align*}
14561456

@@ -1513,7 +1513,7 @@
15131513

15141514
\subsection{Non-homogeneous Recurrences}
15151515
\begin{ex}
1516-
Suppose we have the recurrence relation $(\star_1) = a_n + 3a_{n - 1} + 4a_{n - 3} = 6 \times 2^n$ for $n \ge 3$. The initial conditions are $a_0 = 5, a_1 = 3$, and $a_3 = 25$.
1516+
Suppose we have the recurrence relation $(\star_1) = a_n + 3a_{n - 1} - 4a_{n - 3} = 6 \times 2^n$ for $n \ge 3$. The initial conditions are $a_0 = 5, a_1 = 3$, and $a_3 = 25$.
15171517
\\ \\
15181518
Let's ignore the initial conditions for now. Let's take a guess and pick $a_n = \alpha 2^n$, where $\alpha$ is some constant that we'll decide on later.
15191519
\begin{align*}
@@ -1537,7 +1537,7 @@
15371537

15381538
Therefore, the general form for $(\star_1)$ is:
15391539
\begin{align*}
1540-
a_n + b_n = (A + B_n) - 2^n + C + 3 \times 2^n
1540+
a_n + b_n = (A + B_n) (-2)^n + C + 3 \times 2^n
15411541
\end{align*}
15421542

15431543
Using the initial conditions, we can solve to get $A = 1, B = 1$, and $C = 1$. \\

0 commit comments

Comments
 (0)