There are OWNERS who owns TAXIS and owners provide taxis to a cab company. The cab company have DRIVERS. TAXIS could have one or more allocated drivers and drivers can drive multiple taxis.
This means there would be many to many relation between TAXIS and DRIVERS. It's quite straight forward. To my assumption Cab company keeps the records of owners, drivers and taxis in three different tables/entity - OWNERS, TAXIS and DRIVERS. Company knows which taxi belongs to which owners and driven by which drivers.
The twist is, most of the OWNERS are themselves drivers. How should I make relation of this particular thing.
overall: How to relate when one of the component of entity can be the component of another entity too ? (here some owners cab be drivers as well)
I am trying to make an ER-diagram and later on normalization.
Are you sure? What happens when a TAXI is in the shop for repair? Can't the DRIVER drive a different TAXI in the meantime? If so, you actually want a many to many here -- a DRIVER can drive many TAXIS, and a TAXI can be driven by one or more DRIVERS.
One way you could do it is with composition.