What is the difference between JSF Implementations and Component Libraries?
JSF implementations implements the JSF API Specification. They contains at least the standard components to display any of the available basic ("plain vanilla") HTML elements.
JSF component libraries just adds that extra on top of the basic implementation, often with more skinnability, ajaxability, enhanceability, etcetera, so that you can just program it with a single component instead of a bunch of components or custom components, eventually along with a bunch of related JS/CSS code.
What are the various JSF implementations (like Apache MyFaces) that are available and what is the difference between each one of them?
There are as far two (major) JSF implementations, namely Oracle Mojarra and Apache MyFaces. There's technically not much difference as they both just have to adhere the JSF API Specification. Rather look at robustness, availability of documentation, level of support, grade of maintenance (speed of enhancements, bugfixes, releasing, etc), etcetera. See also: mojarra or myfaces (jsf2.0 starter)
What are the various JSF component libraries (like rich faces and ice faces) that are available and what is the difference between each one of them?
There are lot of them, I'll limit myself to the most used / well known libraries. If you want more skinning capabilities, look at RichFaces (demo), PrimeFaces (demo) or ICEFaces (demo). If you want more ajaxical capabilities (other than what JSF 2.0 already provides), look at RichFaces, PrimeFaces, ICEFaces, OpenFaces (demo) or Trinidad (demo). If you want more specialized/enhanced components, look at RichFaces, PrimeFaces, ICEFaces, OpenFaces, Trinidad or Tomahawk (demo). The difference is mainly to be found in the available set of components and the degree of customizability.
Further there is also a JSF utility library. You'll probably recognize yourself reinventing/rewriting some FacesUtil, JSFUtils, etc classes everytime and/or custom tags/components to solve typical and recurring JSF-specific problems. OmniFaces (demo) is designed to fill this gap by providing a reuseable standard library of JSF utilities which can be used in combination with every JSF implementation and component library.