I'm new to induction so please bear with me. How can I prove using induction that, for each positive integer $n$, the sum of the first $n$ odd positive integers is $n^2$?
I think $9$ can be an example since the sum of the first $9$ positive odd numbers is $1,3,5,7,9,11,13,15,17 = 81 = 9^2$, but where do I go from here.

Note that odd integers are of the form $2k + 1$, for $k \in \mathbb{Z}$. Consider the series:
$$ \sum_{i=0}^{n} (2i+1) = 2\sum_{i=0}^{n}i + \sum_{i=0}^{n} 1 = 2 * \frac{n(n-1)}{2} + n = n^{2} - n + n = n^{2} $$
Hopefully this gives you a better idea of what is going on. This is the algebra you'll probably want to use for your inductive step.