Use the lslpp command to get information about a given fileset (including installed files).

lslpp -l               # List all filesets
lslpp -h $FILESET_NAME # Detailed fileset information

Some versions of AIX can also apparently use the RPM package manager.

How to match files to packages in Red Hat-based operating systems

# List all installed packages
#
rpm -qa
 
# List files in an installed package
#
rpm -ql $PACKAGE_NAME
 
# List the package that owns a particular file
#
rpm -qf $FULL_PATH_TO_FILE
Link to original