Premise:
- Let P(n) return the real part of the nth nontrivial root of the zeta function
- The first several roots of the zeta function are already known
Proof:
- Pick any integer n. For example, 1.
- Solve for P(n)
- Solve for P(n+1)
- Both (2) and (3) are 1/2 as established by Alan Turing and others
- By induction all P(n) are 1/2
QED the real part of all nontrivial roots of the riemann zeta function is 1/2
Any problems?
The problem with this proof is that it isn't a proof. Step number 4 claims something that was not proven in previous steps. We don't know what $f$ is, that's the whole point.
Also, even if this "proof" was correct, this is not how a proof by induction. A proof of induction would look like:
An example of your proof, showing something very wrong:
Claim: for all values $n$, the value $P(n)$ is smaller than $1000000$.
Proof:
An example of a good proof by induction:
Claim: For all values $n\in\mathbb N$, the sum $\sum_{i=1}^n i$ is equal to $\frac{n(n+1)}{2}$
Proof:
First of all, the claim is true for $n=1$ since $$\sum_{i=1}^1 i = 1 = \frac{1\cdot(1+1)}{2}$$
Now, assume that the claim is true for $n$.
So, assuming that the claim is true for $n$, we have proven (in point (5)), that the claim is true for $n+1$. We have also proven that the claim is true for $1$. This allows us to conclude that the claim is true for all values of $n$.
Unlike your proof, this valid induction proof cannot be refuted by the same arguments. It is valid for all values of $n$.