I am trying to prove the following by induction.
$n^2>7n+1$ for all $n\geq8$
I have proved that the function works in the first possible case $$8^2>7(8)+1$$ $$64>57$$
Then subbed $k+1$ and set the inequality to $0$ giving:
$$(k+1)^2-7k-7>0$$ $$k^2+1-7k-7>0$$
Where do I need to go from here to finish proving this inequality?
As written, this is rather troubling: You're assuming the conclusion when you write any variant on $(k + 1)^2 - 7k - 7$. You should start with the assumption that $k^2 - 7k - 1 > 0$ and try to get something about $k + 1$. In particular, you can write something along the lines of \begin{align*} (k + 1)^2 - 7(k + 1) - 1 &= (k^2 - 7k - 1) + 2k + 1 - 7 \\ &> 2k - 6 \\ &> 0 \end{align*} because $2k - 6 \ge 16 - 6 =10$ for all $k \ge 8$. Notice that the inequality $... > 0$ is the conclusion, not the assumption.
As a second issue, you have $7(k + 1)^2 - 7k - 7$ when it should be $-1$ for the last term. But this is a secondary thing.