RDF is nothing but a graph connecting nodes (normally, resources) to other nodes (other resources, or literals) via named edges, but with a twist. Edges can be inferred via logic, meaning that you can get answers to questions even if you never provided the answer verbatim. The inference engine is smart enough to derive these answers from what it knows about the system, and what it knows about the logic of what it describes. Example: if you specify that A is a the mother of B, the inference engine can infer that B has a parent A. You never specified an edge connecting B -- hasParent -> A, but you specified that A -- motherOf -> B and you also specified that hasParent and motherOf are inverses.
Once you have your data, you can ask questions to the database/inference engine. This operation is basically a subgraph isomoprhism search. Your query is a graph, and your database contains a huge graph with all the resources connected by named edges. The task of the database is to find those parts of the huge graph that match (are isomorph) to your query, considering also the flavour of each edge and node, not only their interconnectivity.
What is it used for ? a lot of things. You can do very powerful stuff with this data model. One that is trivial to understand is to think to social networks: people (a resource, a node of the graph) connected by relations (friendOf) and being described (isAged, livesIn). With a query, you can find all 23 years old people having at least three female friends and living in Paris.