Okay, that's a different problem. To use induction to prove that P(n) is true for all n\ge a you must prove two things:
1) That P(a) is true.
2) That if P(k) is true, for some integer k\ge a then P(k+1) is true.
Here, P(n) is "n!> n^2" for n\ge 4.
(1) So P(a)= P(4) is "4!> 4^2". 4!= 4(3)(2)(1)= 24 while 4^2= 16. Yes, 24> 16.
(2) Now assume that k!> 2^k for some k> 3. Then
(k+1)!= (k+1)(k!)> (k+1)2^k
Now we need to show that (k+1)(k^2)> (k+1)^2.
Since k+1> 0 we really only need to show that k^2> k+1. Let's do a separate induction to prove that n^2> n+ 1 for n> 1. If n= 2, 2^2= 4 while 2+ 1= 3. Yes, 4> 3.
Now assume that k^2> k+1 for some k. Then
(k+1)^2= k^2+ 2k+ 1> (k+1)+ 2k+ 1= 3k+ 2
= (k+1+ 1)+ 2k> (k+1+ 1).
That is, (k+1)^2> (k+1)+ 1 so the statement "n^2> n+1" is true for all n larger than 1.
Now that we know (k+1)k^2> (k+1)^2, it follows that (k+1)!> (k+1)k^2> (k+1)^2 and we are done.