Given $$X = \{x : x = 4^n-3n-1 ; n\in\mathbb{N}\}$$ and $$Y = \{y : y = 9(n-1); n\in\mathbb{N}\}$$ Prove that $X \subset Y$.
I've been struggling with this problem for hours but I couldn't find a solution. All I could figure out is that when I put the same value of $n$ in the condition of both sets (as a bound), the elements of set become the same. e.g When I put $n = 1$, I get $X = \{0\}$ and $Y = \{0\}$. But I need a valid proof for it.
Zain Patel's answer outlines what kind of argument you really to construct: an induction argument. The general flow of the inductive proof will be like so:
Fix some $k\geq 1$ and assume that $$ P(k) : 4^k-3k-1=9\ell\qquad(\ell\in\mathbb{Z}) $$ holds. To be shown is that $$ P(k+1) : 4^{k+1}-3(k+1)-1=9\eta\qquad(\eta\in\mathbb{Z}) $$ follows. Starting with the right-hand side of $P(k+1)$, \begin{align} 4^{k+1}-3(k+1)-1 &= 4(4^k-3k-1)+9k\tag{rearrange}\\[0.5em] &= 4(9\ell)+9k\tag{by the inductive hypothesis}\\[0.5em] &= 9(4\ell+k)\tag{factor out the $9$}\\[0.5em] &= 9\eta\tag{$4\ell+k=\eta\in\mathbb{Z}$} \end{align} we end up at the right-hand side of $P(k+1)$, completing the inductive proof.
This is all you really need to show.