Prove that every graph G without isolated vertices has a matching of size at least ${n(G)\over 1+∆(G)}$. (Hint: Apply induction on $e(G)$).
I know that a perfect matching is the size of a minimum edge cover, but I don't really think that relates to this problem. I have no idea where to go with it.
Hint: Do exactly as the hint says!
As a base case, you need to consider, say, any graph $G$ without isolated vertices which has $e(G)=1$. Of course, there's only one such graph; it has $n(G)=2$ and $\Delta(G)=1$, and its single edge is certainly a matching of size at least $\frac{2}{1+1}=1$.
Now, suppose that all graphs with $e(G)\leq k$ satisfy the desired property, and suppose $G$ is a graph with $e(G)=k+1$. Pick a vertex $v$ of maximum degree, and pick one of its edges $e_0$. Consider three cases here:
Case 1: Removing $e_0$ isolates both of its endpoints. In this case, it must be true that $\Delta=1$ (why?); think about the graph obtained from $G$ by removing both endpoints of $e_0$, and apply the inductive hypothesis.
Case 2: Removing $e_0$ isolates one of its endpoints but not the other. In this case, it must isolate the endpoint other than $v$ (why?); try considering the graph obtained by removing this other vertex, and apply the inductive hypothesis.
Case 3: Removing $e_0$ does not isolate any vertices. Apply the inductive hypothesis directly.
Bear in mind that I haven't worked this through to the end... but, if this is true and can be proved by induction on $e(G)$, then this is really the only road map that can work!