ok, so first of all, you had different variables, everything must be in one variable. you cant make a statement about x and then prove something about n when we don't know anything about n. i changed everything to x. Here's how i would do them
Let P(x): "If

, then

"
We have for the base case:
P(1):
 = 3 \geq 1 + 2(1) = 3)
, so P(1) is true
Assume P(k) is true for some k

1. We show that P(k + 1) is true
Since P(k) is true, we have:
It follows that:

, since we add 3 to the left and 2 to the right
But we can factor this so that:
 \geq 1 + 2(k + 1))
which is P(k + 1)
Thus the inductive proof is complete and P(x) holds true for all x

1
This one is pretty much the same as the last.
Let P(n): "If

, then

"
So P(1):
 = 5 \geq 1 + 4(1) = 5)
. So P(1) is true
Assume P(k) true for some k

1, we show that P(k + 1) is true
Since P(k) is true, we have:
It follows that:
Factoring we get:
 \geq 1 + 4(k + 1))
, which is P(k + 1)
Thus the inductive proof is complete, and P(n) holds for all n

1