I am trying to make a use case diagram for library management system. I have two actors admin and user.
Now, the admin has three functions manageCategories (of books like history, geography etc.) manageUser and manageBooks..
What I am doing is considering these 3 functions in a single function manage i.e manage is a single use case.
How should I consider the three functions managerUser, manageBooks, manageCategories in the diagrams?
Should I use include or extend the three functions in a single use case manage, or use anything else?

Edited after the corrects comments of @vainolo about the included use case confusion in my answer:
If the
manageuse case needs the callable use cases (managerUser, manageBooks, manageCategories) in order to make sense (produce value) for the main actor, then you should use the include relationship.If the actor can complete the
manageuse case executing zero or all three of the callable use cases (managerUser, manageBooks, manageCategories) then you should use the extend relationship and you may specify the extension point conditional statements for them.If the
manageuse case is a container used to organize the three callable use cases which can be executed independently, then I’d modelizemanageas a Use Case Package containing the three use cases rather than a use case per se.Please find the following excerpt from that post about the NOT mandatory execution of an included use case (as correctly pointed out by @vainolo):